diff --git a/templates/notifications/index.html.tera b/templates/notifications/index.html.tera index ef0135a5..3c2d174e 100644 --- a/templates/notifications/index.html.tera +++ b/templates/notifications/index.html.tera @@ -11,7 +11,7 @@ {% for notification in notifications %}
{% if notification.kind == "COMMENT" %} - +

{{ "{{ user }} commented your article." | _(user=notification.object.user.name | escape) }} @@ -21,7 +21,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "FOLLOW" %} - +

{{ "{{ user }} is now following you." | _(user=notification.object.follower.name | escape) }} @@ -30,7 +30,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "LIKE" %} - +

{{ "{{ user }} liked your article." | _(user=notification.object.user.name | escape) }} @@ -40,7 +40,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "MENTION" %} - +

{{ "{{ user }} mentioned you." | _(user=notification.object.user.name | escape) }} @@ -49,7 +49,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "RESHARE" %} - +

{{ "{{ user }} boosted your article." | _(user=notification.object.user.name | escape) }}