From 6c3152d3dae65b79203986179e20f371e6d01781 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 3 May 2014 11:10:15 +0200 Subject: Using datetime filter in all templates. --- pyaggr3g470r/templates/unread.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyaggr3g470r/templates/unread.html') diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html index 5194aaca..6c5c5d08 100644 --- a/pyaggr3g470r/templates/unread.html +++ b/pyaggr3g470r/templates/unread.html @@ -27,7 +27,7 @@ {% if feed.articles[n].readed %}

{% else %}

{% endif %} {{ feed.articles[n].title|safe }} {% if feed.articles[n].readed %}

{% else %}{% endif %} -
{{ feed.articles[n].date }}
+
{{ feed.articles[n].date | datetime }}
{% endfor %} @@ -39,7 +39,7 @@ {% if feed.articles[n].readed %}

{% else %}

{% endif %} {{ feed.articles[n].title|safe }} {% if feed.articles[n].readed %}

{% else %}{% endif %} -
{{ feed.articles[n].date }}
+
{{ feed.articles[n].date | datetime }}
{% endfor %} -- cgit