From b35e9773198ef2d8b37c4ca223f08147db47de0b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sat, 12 Dec 2015 21:14:28 +0100 Subject: moving the root of source code from / to /src/ --- web/templates/feed_list.html | 47 -------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 web/templates/feed_list.html (limited to 'web/templates/feed_list.html') diff --git a/web/templates/feed_list.html b/web/templates/feed_list.html deleted file mode 100644 index c5cadab0..00000000 --- a/web/templates/feed_list.html +++ /dev/null @@ -1,47 +0,0 @@ -{% if feeds.all()| count == 0 %} -

{{_("No feed")}}

-{% else %} -
- - - - - - - - - - - - - {% for feed in feeds|sort(attribute="title") %} - - - - - - - - - {% endfor %} - -
#{{ _('Status') }}{{ _('Title') }}{{ _('Site') }}{{ _('Articles') }}{{ _('Actions') }}
{{ loop.index }} - {% if feed.enabled %} - - {% else %} - - {% endif %} - {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %} - - {% endif %} - - {% if feed.icon_url %}{% endif %} - {{ feed.title }} - {{ feed.site_link }}( {{ unread_article_count.get(feed.id, 0) }} ) {{ article_count.get(feed.id, 0) }} - - - - -
-
-{% endif %} -- cgit