diff options
Diffstat (limited to 'source/static/templates/feed.html')
-rw-r--r-- | source/static/templates/feed.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/static/templates/feed.html b/source/static/templates/feed.html index bcc1ec6c..7746c9e2 100644 --- a/source/static/templates/feed.html +++ b/source/static/templates/feed.html @@ -12,7 +12,7 @@ import utils <br /> Address of the site: <a href="${feed['site_link']}">${feed['site_link']}</a>.</p> - <p>${(nb_unread_articles_feed == 0 and ["All articles are read"] or [str(nb_unread_articles_feed) + " unread article" + (nb_unread_articles_feed == 1 and [""] or ["s"])[0]])[0]}.</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: <p>No articles for the feed <b>${feed['feed_title']}</b>. <br /> |