diff options
| author | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-02 12:16:01 +0100 |
|---|---|---|
| committer | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-02 12:16:01 +0100 |
| commit | f3972db96a718413b66efba1e4a0d0339222d83d (patch) | |
| tree | 310d89f5deefe53310449fe0382b3244ffed8432 /budget/templates/forms.html | |
| parent | 655774e4d497bdee38c266137db63947d63211ec (diff) | |
| download | ihatemoney-mirror-f3972db96a718413b66efba1e4a0d0339222d83d.zip ihatemoney-mirror-f3972db96a718413b66efba1e4a0d0339222d83d.tar.gz ihatemoney-mirror-f3972db96a718413b66efba1e4a0d0339222d83d.tar.bz2 | |
Add a way to delete a project. Fix #63
Diffstat (limited to 'budget/templates/forms.html')
| -rw-r--r-- | budget/templates/forms.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/budget/templates/forms.html b/budget/templates/forms.html index 0a06001..9e5ecd6 100644 --- a/budget/templates/forms.html +++ b/budget/templates/forms.html @@ -65,7 +65,10 @@ {{ input(form.name) }} {{ input(form.password) }} {{ input(form.contact_email) }} - {{ submit(form.submit) }} + <div class="actions"> + <button class="btn primary">{{ _("Edit the project") }}</button> + <a id="delete-project" style="color:red; margin-left:10px; cursor:pointer; ">{{ _("delete") }}</a> + </div> {% endmacro %} |
