summaryrefslogtreecommitdiff
path: root/templates/categories
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-07-23 00:28:47 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-07-23 00:28:47 +0200
commit81493afa53a1a1d5ff4b417d05febf9f9e2a172b (patch)
tree00de0a1bb7c386cff4203aa7b0789569e75347bb /templates/categories
parent6f6c8af2a55fabb69372e3fc4e8504167805d018 (diff)
downloadkosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.tar.gz
kosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.tar.bz2
kosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.zip
Restructure
Diffstat (limited to 'templates/categories')
-rw-r--r--templates/categories/manage.jinja19
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/categories/manage.jinja b/templates/categories/manage.jinja
deleted file mode 100644
index 7125c53..0000000
--- a/templates/categories/manage.jinja
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "layout.jinja" %}
-
-{% block heading %} Kategorien {% endblock %}
-
-{% set JSFunction = "catsJS" %}
-
-{% block content %}
- <form name="categories" method="post">
- <ul class="arrow">
- {% for c in cats %}
- <li><span>{{c.name}}</span><input name="{{c.id}}" type="text" value="{{c.name}}" style="display:none;"></li>
- {%- endfor %}
- <div><img id="add" src="{{ "images/add.png" | static_url }}"></div>
- </ul>
- <input type="submit">
- </form>
- <input id="new" name="n-" style="display:none;" >
-{% endblock %}
-