From 0a9cdded14f9085d5a6d785267df78768ba88748 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Tue, 21 Aug 2018 13:19:26 -0400 Subject: [PATCH] Fix remaining uses of naturaltime --- brutaldon/templates/main/notifications.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/brutaldon/templates/main/notifications.html b/brutaldon/templates/main/notifications.html index 4ea9347..e0ddfe8 100644 --- a/brutaldon/templates/main/notifications.html +++ b/brutaldon/templates/main/notifications.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% load humanize %} +{% load humanetime %} {% load taglinks %} {% block title %} @@ -38,7 +38,7 @@ mastodon.notifications()[0] ({{ note.account.acct }}) boosted your toot. ( - {{ note.created_at |naturaltime }} + {{ note.created_at |humane_time }} )

{% include "main/toot_partial.html" with toot=note.status reblog=True reblog_by=note.account.acct reblog_icon=note.account.avatar %} @@ -49,7 +49,7 @@ mastodon.notifications()[0] ({{ note.account.acct }}) favorited your toot. ( - {{ note.created_at |naturaltime }} + {{ note.created_at |humane_time }} )

{% include "main/toot_partial.html" with toot=note.status %} @@ -67,7 +67,7 @@ mastodon.notifications()[0] ({{ note.account.acct }}) followed you. ( - {{ note.created_at |naturaltime }} + {{ note.created_at |humane_time }} )