diff options
Diffstat (limited to 'budget/templates/add_bill.html')
| -rw-r--r-- | budget/templates/add_bill.html | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/budget/templates/add_bill.html b/budget/templates/add_bill.html index 34b89cc..595f363 100644 --- a/budget/templates/add_bill.html +++ b/budget/templates/add_bill.html @@ -1,16 +1,7 @@ {% extends "layout.html" %} -{% block head %} - <script src="{{ url_for("static", filename="js/jquery-ui.js") }}"></script> - {% if g.lang != "en" %} - <script src="{{ url_for("static", filename="js/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script> - {% endif %} -{% endblock %} {% 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 %} @@ -20,7 +11,7 @@ {% block content %} -<form method="post"> +<form class="form-horizontal" method="post"> {{ forms.add_bill(form, edit) }} </form> {% endblock %} |
