aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/add_bill.html
blob: 0b575d7677c1692325f4f3511b40633da7ea6e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layout.html" %}

{% block top_menu %}
<a href="{{ url_for('list_bills') }}">Back to the list</a>
{% endblock %}

{% block content %}

<form method="post">
    {{ forms.add_bill(form, edit) }}
</form>
{% endblock %}