summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2011-02-07 18:41:29 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2011-02-07 18:41:29 +0100
commit9acc25a393b9bd0fa8284f8694c095618c78d631 (patch)
treeeeb9a3f44baff123a862b4dd6f5d5971b46a40ff /templates
parentb5b6ef3e7bd559a1b34632ed68c4fb68ff7b4df7 (diff)
downloadkosten-9acc25a393b9bd0fa8284f8694c095618c78d631.tar.gz
kosten-9acc25a393b9bd0fa8284f8694c095618c78d631.tar.bz2
kosten-9acc25a393b9bd0fa8284f8694c095618c78d631.zip
Instead of overloading the normal 'render' function, add a 'render_utf8' method
Diffstat (limited to 'templates')
-rw-r--r--templates/pages/add.mako2
-rw-r--r--templates/pages/constadd.mako2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/pages/add.mako b/templates/pages/add.mako
index 737d485..daf26f1 100644
--- a/templates/pages/add.mako
+++ b/templates/pages/add.mako
@@ -5,7 +5,7 @@
% endif
<form name="add_expense" method="post">
- ${form.render()}
+ ${form.render_utf8()}
<input type="submit" />
</form>
diff --git a/templates/pages/constadd.mako b/templates/pages/constadd.mako
index 3947e51..3eb78bc 100644
--- a/templates/pages/constadd.mako
+++ b/templates/pages/constadd.mako
@@ -5,7 +5,7 @@
% endif
<form name="add_const_expense" method="post">
- ${form.render()}
+ ${form.render_utf8()}
<input type="submit" />
</form>