aboutsummaryrefslogtreecommitdiff
path: root/source/static/templates/feed.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-14 10:34:52 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-14 10:34:52 +0200
commit28e752188ec3caaa3991c39bed830260819ec788 (patch)
tree138d2a9ee8efc4cd4794d521b9e015b03f3c0fda /source/static/templates/feed.html
parentBug fix in feedgetter.py when a fix does not exist. (diff)
downloadnewspipe-28e752188ec3caaa3991c39bed830260819ec788.tar.gz
newspipe-28e752188ec3caaa3991c39bed830260819ec788.tar.bz2
newspipe-28e752188ec3caaa3991c39bed830260819ec788.zip
The logo of the feed has been added to the feed management page (/feed).
Diffstat (limited to 'source/static/templates/feed.html')
-rw-r--r--source/static/templates/feed.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/static/templates/feed.html b/source/static/templates/feed.html
index 2b394c46..2dadb8b4 100644
--- a/source/static/templates/feed.html
+++ b/source/static/templates/feed.html
@@ -10,7 +10,9 @@ import utils
<br />
Address of the feed: <a href="${feed['feed_link']}">${feed['feed_link']}</a>.
<br />
- Address of the site: <a href="${feed['site_link']}">${feed['site_link']}</a>.</p>
+ Address of the site: <a href="${feed['site_link']}">${feed['site_link']}</a>.
+ <br />
+ Logo: <img src="${feed['feed_image']}" width="28px" height="28px" /></p>
<p>${(nb_unread_articles_feed == 0 and ["All articles are read"] or ['<a href="/unread/'+feed["feed_id"] + ' ">'+str(nb_unread_articles_feed)+'</a>' + ' unread article' + (nb_unread_articles_feed == 1 and [""] or ["s"])[0]])[0]}.</p>
%else:
bgstack15