aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feed.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 07:28:30 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-05 07:28:30 +0100
commit5aebb0bd464cf7af712de1cb0f79754fd9afc4a6 (patch)
tree3c4f6980667190dd1e7075e64b7801fb6bc7cda4 /pyaggr3g470r/templates/feed.html
parentTake advantage of some new fields of the Feed objects. (diff)
downloadnewspipe-5aebb0bd464cf7af712de1cb0f79754fd9afc4a6.tar.gz
newspipe-5aebb0bd464cf7af712de1cb0f79754fd9afc4a6.tar.bz2
newspipe-5aebb0bd464cf7af712de1cb0f79754fd9afc4a6.zip
Minor update to the 'feed' template.
Diffstat (limited to 'pyaggr3g470r/templates/feed.html')
-rw-r--r--pyaggr3g470r/templates/feed.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html
index 12a7aa50..acc1d3a2 100644
--- a/pyaggr3g470r/templates/feed.html
+++ b/pyaggr3g470r/templates/feed.html
@@ -15,7 +15,7 @@
{% endif %}
{% if feed.last_retrieved %}
- {{ _("Last download:") }} <pre>{{ feed.last_retrieved }}</pre><br />
+ {{ _("Last download:") }} {{ feed.last_retrieved | datetime }}<br />
{% endif %}
{% if feed.error_count > 2 %}
@@ -30,9 +30,9 @@
{{ _('Address of the feed') }}: <a href="{{ feed.link }}">{{ feed.link }}</a><br />
{% if feed.site_link != "" %}
- {{ _('Address of the site') }}: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a>
+ {{ _('Address of the site') }}: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a><br />
{% endif %}
- <br />
+
{% if feed.articles.all()|count != 0 %}
{{ _('The last article was posted') }} {{ elapsed.days }} {{ _('day(s) ago.') }}<br />
{{ _('Daily average') }}: {{ average }}, {{ _('between the') }} {{ first_post_date | datetime }} {{ _('and the') }} {{ end_post_date | datetime }}.
bgstack15