aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-01-01 16:49:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-01-01 16:49:31 +0100
commitb4f26c158e654bdac0c055ad3d1d1fcbee2a931f (patch)
tree7c3ad85aafdf38689e03da201aba20583608248b /pyaggr3g470r/templates
parentLink to the page to edit feed informations. (diff)
downloadnewspipe-b4f26c158e654bdac0c055ad3d1d1fcbee2a931f.tar.gz
newspipe-b4f26c158e654bdac0c055ad3d1d1fcbee2a931f.tar.bz2
newspipe-b4f26c158e654bdac0c055ad3d1d1fcbee2a931f.zip
Displaying more information in the /feed page.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/feed.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html
index 7abd133f..b0f06eb6 100644
--- a/pyaggr3g470r/templates/feed.html
+++ b/pyaggr3g470r/templates/feed.html
@@ -8,8 +8,12 @@
<p>This feed contains {{ feed.articles|count }} <a href="/articles/{{ feed.oid }}">articles</a>.</p>
<p>Address of the feed: <a href="{{ feed.link }}">{{ feed.link }}</a>.</p>
<p>Address of the site: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a>.</p>
+ <br />
+ <p>The last article was posted {{ elapsed.days }} day(s) ago.<br />
+ Daily average: {{ average }}, between the {{ first_post_date.strftime('%Y-%m-%d') }} and the {{ end_post_date.strftime('%Y-%m-%d') }}.</p>
+ <br />
<h3>Tag cloud</h3>
<div>{{ tag_cloud|safe }}</div>
</div>
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
bgstack15