From 5b7db9398abaacea241d9fcce7885457c562d7fa Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 11 Oct 2015 12:18:07 +0200 Subject: a bit of cleaning, putting code where it belongs --- src/web/templates/feed_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates/feed_list.html') diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index c5cadab0..27815250 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -36,7 +36,7 @@ - + -- cgit From 7cbbcb59f4c434fbd7e74e85c90e98fadd189b65 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 17:48:41 +0200 Subject: adding, improving UI to manage categories --- src/web/templates/feed_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates/feed_list.html') diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index 27815250..51561dee 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -1,4 +1,4 @@ -{% if feeds.all()| count == 0 %} +{% if feeds| count == 0 %}

{{_("No feed")}}

{% else %}
-- cgit From 2c0e17cb977a1e8782799b337df8b1583d019906 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 22:36:01 +0200 Subject: bootstraping react --- src/web/templates/feed_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates/feed_list.html') diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index 51561dee..114ae960 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -1,4 +1,4 @@ -{% if feeds| count == 0 %} +{% if feeds.count() == 0 %}

{{_("No feed")}}

{% else %}
-- cgit