diff options
| author | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-01 17:09:03 -0700 |
|---|---|---|
| committer | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-01 17:09:03 -0700 |
| commit | 655774e4d497bdee38c266137db63947d63211ec (patch) | |
| tree | c6dc3f16b9633d82679b4da2e03240b0bfb31057 /budget/templates | |
| parent | d9cf29c510ecdb288ca99aee538ecb53aa9de198 (diff) | |
| parent | 471ef87d3e64cfedf29d667126436c315599872b (diff) | |
| download | ihatemoney-mirror-655774e4d497bdee38c266137db63947d63211ec.zip ihatemoney-mirror-655774e4d497bdee38c266137db63947d63211ec.tar.gz ihatemoney-mirror-655774e4d497bdee38c266137db63947d63211ec.tar.bz2 | |
Merge pull request #65 from aavenel/master
Bug fix in order to show the calendar widget when you edit a bill.
Diffstat (limited to 'budget/templates')
| -rw-r--r-- | budget/templates/add_bill.html | 15 | ||||
| -rw-r--r-- | budget/templates/edit_bill.html | 15 | ||||
| -rw-r--r-- | budget/templates/layout.html | 2 |
3 files changed, 16 insertions, 16 deletions
diff --git a/budget/templates/add_bill.html b/budget/templates/add_bill.html index 6349730..b784bfd 100644 --- a/budget/templates/add_bill.html +++ b/budget/templates/add_bill.html @@ -1,5 +1,20 @@ {% extends "layout.html" %} +{% block head %} + <script src="{{ url_for("static", filename="jquery/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> + {% endif %} + <script src="{{ url_for("static", filename="ihatemoney/custom.js") }}"></script> +{% 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 %} + + {% block top_menu %} <a href="{{ url_for(".list_bills") }}">{{ _("Back to the list") }}</a> {% endblock %} diff --git a/budget/templates/edit_bill.html b/budget/templates/edit_bill.html deleted file mode 100644 index cb55d69..0000000 --- a/budget/templates/edit_bill.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "layout.html" %} - -{% block top_menu %} -<a href="{{ url_for(".list_bills") }}">{{ _("Back to the list") }}</a> -{% endblock %} - -{% block content %} -<h2>{{ _("Edit a bill") }}</h2> - -<div class="container span-24 add-bill uniForm" style="width: 400px"> - <form action="" method="post" class=uniForm"> - {{ forms.add_bill(form) }} - </form> -</div> -{% endblock %} diff --git a/budget/templates/layout.html b/budget/templates/layout.html index f94c421..c8f8df8 100644 --- a/budget/templates/layout.html +++ b/budget/templates/layout.html @@ -49,7 +49,7 @@ <h3><a class="logo" href="{{ url_for(".home") }}">#! money?</a></h3> {% if g.project %} <ul> - <li class="active"><a href="">{{ _("Bills") }}</a></li> + <li class="active"><a href="{{ url_for(".list_bills") }}">{{ _("Bills") }}</a></li> </ul> <ul class="nav secondary-nav"> <li class="menu"> |
