aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/add_bill.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/add_bill.html')
-rw-r--r--budget/templates/add_bill.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/budget/templates/add_bill.html b/budget/templates/add_bill.html
index b784bfd..34b89cc 100644
--- a/budget/templates/add_bill.html
+++ b/budget/templates/add_bill.html
@@ -1,11 +1,10 @@
{% extends "layout.html" %}
{% block head %}
- <script src="{{ url_for("static", filename="jquery/js/jquery-ui.js") }}"></script>
+ <script src="{{ url_for("static", filename="js/jquery-ui.js") }}"></script>
{% if g.lang != "en" %}
- <script src="{{ url_for("static", filename="jquery/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
+ <script src="{{ url_for("static", filename="js/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
{% endif %}
- <script src="{{ url_for("static", filename="ihatemoney/custom.js") }}"></script>
{% endblock %}
{% block js %}
$('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});