aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/edit_bill.html
blob: c78eb098f39bb794b6b976fc9bdcd073d3923f00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "layout.html" %}

{% block top_menu %}
<a href="{{ url_for('list_bills', project_id=project.id) }}">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">
        {{ forms.add_bill(form) }}
    </form>
</div>
{% endblock %}