ihatemoney/budget/templates/add_bill.html

12 lines
227 B
HTML

{% 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 %}