From 2797792322402abe2aa22ddfb6b46229c0a81c48 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Fri, 5 Feb 2021 16:00:28 +0000 Subject: [PATCH] Add search box and edit tags button to Package Tags page --- app/templates/todo/tags.html | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/app/templates/todo/tags.html b/app/templates/todo/tags.html index 3b8a44b..6f094e2 100644 --- a/app/templates/todo/tags.html +++ b/app/templates/todo/tags.html @@ -5,7 +5,26 @@ {% endblock %} {% block content %} - +
+
+
+ +
+ +
+ +
+
+ +
+
+ {% if check_global_perm(current_user, "EDIT_TAGS") %} + {{ _("Edit Tags") }} + {% endif %} +
+
+ +
@@ -29,7 +48,10 @@
Package {% for tag in package.tags %} - {{ tag.title }} + + {{ tag.title }} + {% endfor %}