From f81d231465e7a3d7b4f434f266a5a733fa45ec9b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 11 Oct 2015 01:41:20 +0200 Subject: assigning categories to feeds and articles --- src/web/templates/feed.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/web/templates/feed.html') 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 @@

{{ _('This feed contains') }} {{ feed.articles.all()|count }} {{ _('articles') }}.
+ {% if category %} + {{ _('This feed is part of category %(category_name)s', category_name=category.name) }}
+ {% endif %} {{ _('Address of the feed') }}: {{ feed.link }}
{% if feed.site_link != "" %} {{ _('Address of the site') }}: {{ feed.site_link }}
-- cgit