diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-01-26 18:25:38 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-01-26 18:25:38 +0100 |
commit | 1c7d27938a47ab3739400867351ef00652440217 (patch) | |
tree | d3ca6875f5d3e2fc7ae8a920486e04e72432adbb /pyaggr3g470r/templates/feed.html | |
parent | Added an option to choose if URL of articles behind proxies should be resolved. (diff) | |
download | newspipe-1c7d27938a47ab3739400867351ef00652440217.tar.gz newspipe-1c7d27938a47ab3739400867351ef00652440217.tar.bz2 newspipe-1c7d27938a47ab3739400867351ef00652440217.zip |
The description of the feed is stored in the database.
Diffstat (limited to 'pyaggr3g470r/templates/feed.html')
-rw-r--r-- | pyaggr3g470r/templates/feed.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html index 9825e16b..c405d913 100644 --- a/pyaggr3g470r/templates/feed.html +++ b/pyaggr3g470r/templates/feed.html @@ -3,8 +3,11 @@ <div class="container"> <div class="jumbotron"> <h2>{{ feed.title }}</h2> + {% if feed.description %} <p>{{ feed.description }}</p> {% endif %} <a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a> <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a> + </div> + <div class="jumbotron"> <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> |