diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-09-14 22:03:18 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-09-14 22:03:18 +0200 |
| commit | 20ab40690d74befcd8fc75f24f301759840bf43a (patch) | |
| tree | d92319ad0f5cc6b6b506f8c918fd30549eb81b69 /budget/templates/forms.html | |
| parent | 5721be1d15ba02e47f98fb9a487248adb297a082 (diff) | |
| download | ihatemoney-mirror-20ab40690d74befcd8fc75f24f301759840bf43a.zip ihatemoney-mirror-20ab40690d74befcd8fc75f24f301759840bf43a.tar.gz ihatemoney-mirror-20ab40690d74befcd8fc75f24f301759840bf43a.tar.bz2 | |
Provide a way to edit a project. Fix #17
Diffstat (limited to 'budget/templates/forms.html')
| -rw-r--r-- | budget/templates/forms.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/budget/templates/forms.html b/budget/templates/forms.html index b027763..f32e9fd 100644 --- a/budget/templates/forms.html +++ b/budget/templates/forms.html @@ -52,6 +52,17 @@ {% endmacro %} +{% macro edit_project(form) %} + + {% include "display_errors.html" %} + {{ form.hidden_tag() }} + {{ input(form.name) }} + {{ input(form.password) }} + {{ input(form.contact_email) }} + {{ submit(form.submit) }} + +{% endmacro %} + {% macro add_bill(form, edit=False) %} <fieldset> |
