aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-19 09:58:17 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-19 09:58:17 +0100
commitd665e360121e1395be429f074be9d6b0efe1cae2 (patch)
treed2ebced88cac01543ff156526f6ce24c77c132ec /src
parentWith the new home page we do not need anymore the link to see all articles of... (diff)
downloadnewspipe-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')
-rw-r--r--src/web/templates/feed.html2
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 %}
bgstack15