diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-02-09 21:22:33 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-02-09 21:22:33 +0100 |
commit | cd403ee877f2121d8bd3454ac670df50e635cd81 (patch) | |
tree | 7480af27dee603385b95d6463ec26a5e8e4edf89 /pyaggr3g470r/templates/feed.html | |
parent | It is now possible to import OPML files. (diff) | |
download | newspipe-cd403ee877f2121d8bd3454ac670df50e635cd81.tar.gz newspipe-cd403ee877f2121d8bd3454ac670df50e635cd81.tar.bz2 newspipe-cd403ee877f2121d8bd3454ac670df50e635cd81.zip |
Improvements to the OPML importer.
Diffstat (limited to 'pyaggr3g470r/templates/feed.html')
-rw-r--r-- | pyaggr3g470r/templates/feed.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html index 0af94ef4..95465170 100644 --- a/pyaggr3g470r/templates/feed.html +++ b/pyaggr3g470r/templates/feed.html @@ -10,9 +10,15 @@ <div class="jumbotron"> <p> This feed contains {{ feed.articles|count }} <a href="/articles/{{ feed.oid }}/100">articles</a> - ({{ ((feed.articles|count * 100 ) / nb_articles) | round(2, 'floor') }}% of the database).<br /> - Address of the feed: <a href="{{ feed.link }}">{{ feed.link }}</a>.<br /> - Address of the site: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a>.<br /> + {% if nb_articles != 0 %} + ({{ ((feed.articles|count * 100 ) / nb_articles) | round(2, 'floor') }}% of the database) + {% endif %} + .<br /> + 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> + {% endif %} + <br /> {% if feed.articles|count != 0 %} 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') }}. |