diff options
| author | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-10-20 04:18:12 +0200 |
|---|---|---|
| committer | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-10-20 04:18:12 +0200 |
| commit | 1e0898dd8770a19c45c934c4683def77b9497b3e (patch) | |
| tree | dea515e23dedc51b9bf07504d589ea9f9d7e9edc /budget/templates/list_bills.html | |
| parent | 440ccb6e220f1cd7ea7f15de6f46c4a98e51d47c (diff) | |
| download | ihatemoney-mirror-1e0898dd8770a19c45c934c4683def77b9497b3e.zip ihatemoney-mirror-1e0898dd8770a19c45c934c4683def77b9497b3e.tar.gz ihatemoney-mirror-1e0898dd8770a19c45c934c4683def77b9497b3e.tar.bz2 | |
Last selected payer and translations. Fix #47.
- Last selected payer selected by default when creating a new bill
- Fix some translation typos and modify a few labels
Diffstat (limited to 'budget/templates/list_bills.html')
| -rw-r--r-- | budget/templates/list_bills.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index e284eff..c8e7918 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -6,6 +6,7 @@ {% 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 %} // display the form when clicking on the "add bill" button @@ -77,7 +78,7 @@ {% endblock %} {% block content %} -<div class="identifier">{{ _("The project identifier is") }} <a href="{{ url_for(".list_bills") }}">{{ g.project.id }}</a>, {{ _("remember it or add this page to you bookmarks!") }}</div> +<div class="identifier">{{ _("The project identifier is") }} <a href="{{ url_for(".list_bills") }}">{{ g.project.id }}</a>, {{ _("remember it!") }}</div> <a id="new-bill" href="{{ url_for(".add_bill") }}" class="primary">{{ _("Add a new bill") }}</a> <form id="bill-form" action="{{ url_for(".add_bill") }}" method="post" style="display: none"> <a id="hide-bill-form" href="#">{{ _("hide this form") }}</a> @@ -86,7 +87,7 @@ {% if bills.count() > 0 %} <table class="list_bills common-table zebra-striped"> - <thead><tr><th>{{ _("When?") }}</th><th>{{ _("Who paid?") }}</th><th>{{ _("For what?") }}</th><th>{{ _("Owers") }}</th><th>{{ _("How much?") }}</th><th>{{ _("Actions") }}</th></tr></thead> + <thead><tr><th>{{ _("When?") }}</th><th>{{ _("Who paid?") }}</th><th>{{ _("For what?") }}</th><th>{{ _("For whom?") }}</th><th>{{ _("How much?") }}</th><th>{{ _("Actions") }}</th></tr></thead> <tbody> {% for bill in bills %} <tr class="{{ loop.cycle("odd", "even") }}"> |
