From 62b3afeeedfe054345f86093e2d243e956c1e3c9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 26 Feb 2020 11:27:31 +0100 Subject: The project is now using Poetry. --- src/web/templates/categories.html | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 src/web/templates/categories.html (limited to 'src/web/templates/categories.html') diff --git a/src/web/templates/categories.html b/src/web/templates/categories.html deleted file mode 100644 index 4985e0ca..00000000 --- a/src/web/templates/categories.html +++ /dev/null @@ -1,36 +0,0 @@ -{% extends "layout.html" %} -{% block content %} -
-

{{ _("You have %(categories)d categories · Add a %(start_link)scategory%(end_link)s", categories=categories|count, start_link=("" % url_for("category.form"))|safe, end_link=""|safe) }}

- {% if categories|count == 0 %} -

{{_("No category")}}

- {% else %} -
- - - - - - - - - - - - {% for category in categories %} - - - - - - - - {% endfor %} - -
#{{ _('Name') }}{{ _('Feeds') }}{{ _('Articles') }}{{ _('Actions') }}
{{ loop.index }}{{ category.name }}{{ feeds_count.get(category.id, 0) }}( {{ unread_article_count.get(category.id, 0) }} ) {{ article_count.get(category.id, 0) }} - - -
-
- {% endif %} -{% endblock %} -- cgit