summaryrefslogtreecommitdiff
path: root/templates/pages/add.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/add.jinja')
-rw-r--r--templates/pages/add.jinja25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/pages/add.jinja b/templates/pages/add.jinja
deleted file mode 100644
index 4728e99..0000000
--- a/templates/pages/add.jinja
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "page.jinja" %}
-
-{% block heading %}
- Neue Ausgabe hinzufügen
-{% endblock %}
-
-{% block js %}
- {{ super() }}
- <script type="text/javascript" src="{{ "jqueryui/jquery-ui-1.8.2.js" | static_url }}"></script>
- <script type="text/javascript" src="{{ "js/add.js" | static_url }}"></script>
-{% endblock %}
-
-{% block style %}
- {{ super() }}
- <link href="{{ "jqueryui/css/ui-darkness/jquery-ui-1.8.2.custom.css" | static_url }}" rel="stylesheet" type="text/css">
-{% endblock %}
-
-{% block content %}
- <form name="add_expense" method="post">
- {{ render_form(form) }}
- {% block form_buttons %}
- <input type="submit" name="changeB">
- {% endblock %}
- </form>
-{% endblock %}