From 0dc09cef4f831fb2903e9930d43430a9dda64184 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 11 Jul 2024 23:02:50 +0200 Subject: [PATCH] fixup! Switch to maud for templating --- templates/base.html | 65 ---------------------------------- templates/item_class_edit.html | 52 --------------------------- 2 files changed, 117 deletions(-) delete mode 100644 templates/base.html delete mode 100644 templates/item_class_edit.html diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index bc21533..0000000 --- a/templates/base.html +++ /dev/null @@ -1,65 +0,0 @@ -{# -SPDX-FileCopyrightText: 2024 Simon Bruder - -SPDX-License-Identifier: AGPL-3.0-or-later -#} - -{% let branding = "li7y" -%} - - - - - {% block title %}{{ branding }}{% endblock %} - - - - - - - - -
-
-
-

{% block page_title %}{% endblock %}

-
-
- {% block page_actions %}{% endblock %} -
-
- {% block main %}{% endblock %} -
- -
-
-

li7y is free software, released under the terms of the AGPL v3

-
-
- - - - {# TODO this is not the best way, but it works for now #} - {% block extra_scripts %}{% endblock %} - - diff --git a/templates/item_class_edit.html b/templates/item_class_edit.html deleted file mode 100644 index 610e5c3..0000000 --- a/templates/item_class_edit.html +++ /dev/null @@ -1,52 +0,0 @@ -{# -SPDX-FileCopyrightText: 2024 Simon Bruder - -SPDX-License-Identifier: AGPL-3.0-or-later -#} - -{% extends "base.html" %} -{% block title %}{% block page_title %}{{ item_class.name }}{% endblock %} – Edit Item Class – {{ branding }}{% endblock %} -{% block main %} -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- -{% endblock %}