aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/edit_project.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2017-03-11 01:27:41 +0100
committerGitHub <noreply@github.com>2017-03-11 01:27:41 +0100
commit42854bd064404931eaccc3580ce505611162108b (patch)
treeb80cbf5ae0ddee631cb0c0aa31940f71d94d5855 /budget/templates/edit_project.html
parent8c412b391f9402f3840728ad1e6b8043e4ed8b7b (diff)
parente35480d6b7adf76f5bc4d46153b621abd722c681 (diff)
downloadihatemoney-mirror-42854bd064404931eaccc3580ce505611162108b.zip
ihatemoney-mirror-42854bd064404931eaccc3580ce505611162108b.tar.gz
ihatemoney-mirror-42854bd064404931eaccc3580ce505611162108b.tar.bz2
Merge pull request #176 from 0livd/master
Add export feature
Diffstat (limited to 'budget/templates/edit_project.html')
-rw-r--r--budget/templates/edit_project.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/budget/templates/edit_project.html b/budget/templates/edit_project.html
index 0240eff..a5e85c3 100644
--- a/budget/templates/edit_project.html
+++ b/budget/templates/edit_project.html
@@ -10,6 +10,10 @@
{% block content %}
<h2>{{ _("Edit this project") }}</h2>
<form class="form-horizontal" method="post">
-{{ forms.edit_project(form) }}
+{{ forms.edit_project(edit_form) }}
+</form></br>
+<h2>{{ _("Download this project's data") }}</h2>
+<form class="form-horizontal" method="post">
+{{ forms.export_project(export_form) }}
</form>
{% endblock %}