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 %} - - - - - - - - - {{ branding }} - - - - - - - - Home - - - Items - - - Item Classes - - - - - - - - - - {% block page_title %}{% endblock %} - - - {% block page_actions %}{% endblock %} - - - {% block main %}{% endblock %} - - - - - - - {# 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 %} - - - UUID - - - - Name - - - - Type - - {% for variant in ItemClassType::VARIANTS %} - {{ variant }} - {% endfor %} - - - - Parent - - - Edit - - -{% endblock %}