diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-19 09:58:17 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-19 09:58:17 +0100 |
commit | d665e360121e1395be429f074be9d6b0efe1cae2 (patch) | |
tree | d2ebced88cac01543ff156526f6ce24c77c132ec /src/web | |
parent | With the new home page we do not need anymore the link to see all articles of... (diff) | |
download | newspipe-d665e360121e1395be429f074be9d6b0efe1cae2.tar.gz newspipe-d665e360121e1395be429f074be9d6b0efe1cae2.tar.bz2 newspipe-d665e360121e1395be429f074be9d6b0efe1cae2.zip |
With the new home page we do not need anymore the link to see all articles of a feed.
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/templates/feed.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index 096ee794..7a40ca9a 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -9,7 +9,7 @@ </div> <div class="well"> <p> - {{ _('This feed contains') }} {{ feed.articles.all()|count }} <a href= "{{ url_for("home", feed_id=feed.id, filter_="all") }}">{{ _('articles') }}</a>.<br /> + {{ _('This feed contains') }} {{ feed.articles.all()|count }} {{ _('articles') }}.<br /> {% if category %} {{ _('This feed is part of category %(category_name)s', category_name=category.name) }}<br /> {% endif %} |