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

{% block js %}
    $('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
    $.datepicker.setDefaults({'dateFormat': 'yy-mm-dd'});
    $(".datepicker").datepicker($.datepicker.regional['{{ g.lang }}']);

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