diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-19 11:54:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-19 11:54:08 +0100 |
commit | c351b29b2181aabfdd115476ffa68df0c05a3a09 (patch) | |
tree | 251518dbb4349d29ac01c3d135f8c33cf27cf11b /pyaggr3g470r/templates/history.html | |
parent | Updated translations. (diff) | |
download | newspipe-c351b29b2181aabfdd115476ffa68df0c05a3a09.tar.gz newspipe-c351b29b2181aabfdd115476ffa68df0c05a3a09.tar.bz2 newspipe-c351b29b2181aabfdd115476ffa68df0c05a3a09.zip |
Format the date with the adequat Babel filter.
Diffstat (limited to 'pyaggr3g470r/templates/history.html')
-rw-r--r-- | pyaggr3g470r/templates/history.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/history.html b/pyaggr3g470r/templates/history.html index b01ca032..6be54d71 100644 --- a/pyaggr3g470r/templates/history.html +++ b/pyaggr3g470r/templates/history.html @@ -17,7 +17,7 @@ <li class="list-group-item"><a href="/history/{{ year }}/{{ article }}">{{ article | month_name }}</a> : {{ articles_counter[article] }} articles</li> {% else %} {% for article in articles | sort(attribute="date", reverse = True) %} - <li class="list-group-item">{{ article.date }} - <a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li> + <li class="list-group-item">{{ article.date | datetime }} - <a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li> {% endfor %} {% endif %} {% endfor %} |