aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/add_bill.html
blob: 595f3637e51b4d0a4513dbd71aba39594813c1b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "layout.html" %}

{% block js %}
    $('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
{% endblock %}


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

{% block content %}

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