From b1c1ba151dcd84ef18d5d05be50a848dafef0abe Mon Sep 17 00:00:00 2001 From: Bat Date: Sat, 18 Aug 2018 12:55:34 +0200 Subject: [PATCH] Fix #173 --- templates/notifications/index.html.tera | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/notifications/index.html.tera b/templates/notifications/index.html.tera index b608da1b..2b14ec48 100644 --- a/templates/notifications/index.html.tera +++ b/templates/notifications/index.html.tera @@ -18,7 +18,7 @@

{{ notification.object.post.post.title }}

-

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

+

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

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

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

+

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

{% elif notification.kind == "LIKE" %} @@ -37,7 +37,7 @@

{{ notification.object.post.post.title }}

-

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

+

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

{% elif notification.kind == "MENTION" %} @@ -46,7 +46,7 @@ {{ "{{ user }} mentioned you." | _(user=notification.object.user.name | escape) }} -

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

+

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

{% elif notification.kind == "RESHARE" %} @@ -56,7 +56,7 @@

{{ notification.object.post.post.title }}

-

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

+

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

{% endif %}