aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/feed.html
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-10-11 01:41:20 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-26 23:46:30 +0100
commitf81d231465e7a3d7b4f434f266a5a733fa45ec9b (patch)
treebe94ce9383fa7beeff162d8cbd7f7b8751816576 /src/web/templates/feed.html
parentbase category creation/edition (diff)
downloadnewspipe-f81d231465e7a3d7b4f434f266a5a733fa45ec9b.tar.gz
newspipe-f81d231465e7a3d7b4f434f266a5a733fa45ec9b.tar.bz2
newspipe-f81d231465e7a3d7b4f434f266a5a733fa45ec9b.zip
assigning categories to feeds and articles
Diffstat (limited to 'src/web/templates/feed.html')
-rw-r--r--src/web/templates/feed.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html
index 6705015a..7434a9ac 100644
--- a/src/web/templates/feed.html
+++ b/src/web/templates/feed.html
@@ -10,6 +10,9 @@
<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 />
+ {% if category %}
+ {{ _('This feed is part of category %(category_name)s', category_name=category.name) }}<br />
+ {% endif %}
{{ _('Address of the feed') }}: <a href="{{ feed.link }}" target="_blank">{{ feed.link }}</a><br />
{% if feed.site_link != "" %}
{{ _('Address of the site') }}: <a href="{{ feed.site_link }}" target="_blank">{{ feed.site_link }}</a><br />
bgstack15