summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-05 21:03:11 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-05 21:03:11 +0200
commit5bf8a03dae494f1625d3d5eeee5ffd6396b730fa (patch)
tree9ef0fd0f28d0324b3379c65051e1981cc9ac2ca0 /templates
parentd6089be1fac75a58cce3e6d0f4379b3f0d362691 (diff)
downloadkosten-5bf8a03dae494f1625d3d5eeee5ffd6396b730fa.tar.gz
kosten-5bf8a03dae494f1625d3d5eeee5ffd6396b730fa.tar.bz2
kosten-5bf8a03dae494f1625d3d5eeee5ffd6396b730fa.zip
Delete const entries
Diffstat (limited to '')
-rw-r--r--templates/pages/constadd.mako4
-rw-r--r--templates/pages/constedit.mako5
2 files changed, 8 insertions, 1 deletions
diff --git a/templates/pages/constadd.mako b/templates/pages/constadd.mako
index 68a276f..2c16544 100644
--- a/templates/pages/constadd.mako
+++ b/templates/pages/constadd.mako
@@ -6,7 +6,9 @@
<form name="add_const_expense" method="post">
${form.render()}
- <input type="submit" />
+ <%block name="form_buttons">
+ <input type="submit" name="changeB"/>
+ </%block>
</form>
<%block name="heading">
diff --git a/templates/pages/constedit.mako b/templates/pages/constedit.mako
index 618df2e..7507bf9 100644
--- a/templates/pages/constedit.mako
+++ b/templates/pages/constedit.mako
@@ -3,3 +3,8 @@
<%block name="heading">
Konstante Ausgabe bearbeiten
</%block>
+
+<%block name="form_buttons">
+ <input type="submit" name="changeB" />
+ <input type="submit" name="deleteB" value="Eintrag löschen" />
+</%block>