diff options
Diffstat (limited to 'budget/templates/edit_bill.html')
| -rw-r--r-- | budget/templates/edit_bill.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/budget/templates/edit_bill.html b/budget/templates/edit_bill.html index c78eb09..03a1a26 100644 --- a/budget/templates/edit_bill.html +++ b/budget/templates/edit_bill.html @@ -1,14 +1,14 @@ {% extends "layout.html" %} {% block top_menu %} -<a href="{{ url_for('list_bills', project_id=project.id) }}">Back to the list</a> +<a href="{{ url_for('list_bills') }}">Back to the list</a> {% endblock %} {% block content %} <h2>Edit a bill</h2> <div class="container span-24 add-bill uniForm" style="width: 400px"> - <form action="{{ url_for('edit_bill', project_id=project.id, bill_id=bill_id) }}" method="post" class=uniForm"> + <form action="{{ url_for('edit_bill', bill_id=bill_id) }}" method="post" class=uniForm"> {{ forms.add_bill(form) }} </form> </div> |
