aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/history.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-16 07:22:52 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-16 07:22:52 +0100
commit8d0fea82761f2fdc1ea93687429990eefa851fc8 (patch)
treef93d515b5694efbb7b94ee02e361473731c8d4dc /pyaggr3g470r/templates/history.html
parentforgot login required decorator (diff)
downloadnewspipe-8d0fea82761f2fdc1ea93687429990eefa851fc8.tar.gz
newspipe-8d0fea82761f2fdc1ea93687429990eefa851fc8.tar.bz2
newspipe-8d0fea82761f2fdc1ea93687429990eefa851fc8.zip
Improvements and fixes for the history() function.
Diffstat (limited to 'pyaggr3g470r/templates/history.html')
-rw-r--r--pyaggr3g470r/templates/history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/history.html b/pyaggr3g470r/templates/history.html
index 6216f616..2d64da98 100644
--- a/pyaggr3g470r/templates/history.html
+++ b/pyaggr3g470r/templates/history.html
@@ -10,7 +10,7 @@
<li class="list-group-item"><a href="/history/{{ year }}/{{ article }}">{{ article }}</a> : {{ articles_counter[article] }} articles</li>
{% else %}
{% for article in articles %}
- <li class="list-group-item"><a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li>
+ <li class="list-group-item">{{ article.date }} - <a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li>
{% endfor %}
{% endif %}
{% endfor %}
bgstack15