aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/favorites.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:10:15 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:10:15 +0200
commit6c3152d3dae65b79203986179e20f371e6d01781 (patch)
treeaa3b4e7f522b6da02995c927480280a182f32de4 /pyaggr3g470r/templates/favorites.html
parentTake into account the client time zone. (diff)
downloadnewspipe-6c3152d3dae65b79203986179e20f371e6d01781.tar.gz
newspipe-6c3152d3dae65b79203986179e20f371e6d01781.tar.bz2
newspipe-6c3152d3dae65b79203986179e20f371e6d01781.zip
Using datetime filter in all templates.
Diffstat (limited to 'pyaggr3g470r/templates/favorites.html')
-rw-r--r--pyaggr3g470r/templates/favorites.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/favorites.html b/pyaggr3g470r/templates/favorites.html
index b0357b41..9be16692 100644
--- a/pyaggr3g470r/templates/favorites.html
+++ b/pyaggr3g470r/templates/favorites.html
@@ -25,7 +25,7 @@
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
- <h6>{{ feed.articles[n].date }}</h6>
+ <h6>{{ feed.articles[n].date | datetime }}</h6>
</div>
{% endfor %}
</div>
@@ -37,7 +37,7 @@
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
- <h6>{{ feed.articles[n].date }}</h6>
+ <h6>{{ feed.articles[n].date | datetime }}</h6>
</div>
{% endfor %}
</div>
bgstack15