From c9e4638b348a5d9004376ed90e72fe8bb9df40e3 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 14 Jul 2020 03:49:30 +0100 Subject: Add start of bulk tag editor --- app/templates/base.html | 2 +- app/templates/todo/tags.html | 113 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 app/templates/todo/tags.html (limited to 'app/templates') diff --git a/app/templates/base.html b/app/templates/base.html index b492ae9..67d8351 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -7,7 +7,7 @@ {% block title %}title{% endblock %} - {{ config.USER_APP_NAME }} - + diff --git a/app/templates/todo/tags.html b/app/templates/todo/tags.html new file mode 100644 index 0000000..e7675f8 --- /dev/null +++ b/app/templates/todo/tags.html @@ -0,0 +1,113 @@ +{% extends "base.html" %} + +{% block title %} + Tags +{% endblock %} + +{% block content %} + + + + + + + + + {% for package in packages %} + + + + + {% endfor %} +
PackageTags
+ + {{ package.title }} + + + by {{ package.author.display_name }} + + {% for tag in package.tags %} + {{ tag.title }} + {% endfor %} + + + +
+ + +{% endblock %} + +{% from "macros/forms.html" import form_scripts %} + +{% block scriptextra %} +{{ form_scripts() }} + + +{% endblock %} -- cgit v1.2.3