{% extends "layout.html" %} {% block title %}- {{ g.project.name }}{% endblock %} {% block head %} {% if g.lang != "en" %} {% endif %} {% endblock %} {% block js %} // specifies that the text in #name text field has to be hidden on user typing auto_hide_default_text('#name'); $(window).resize(function() { $("#sidebar").height( window.innerHeight-40 ); $("#table_overflow").height( $("#sidebar").height()-120 ); }); // display the form when clicking on the "add bill" button var show_form = function(){ $('#bill-form').slideDown(100); $("#hide-bill-form").show(); $("#new-bill").hide(); return false; } // and provide a mechanism to hide it back var hide_form = function(){ $("#bill-form").slideUp(100); $("#new-bill").show(); $("#hide-bill-form").hide(); return false; } $('#new-bill').click(show_form); $('#empty-new-bill').click(show_form); $('#hide-bill-form').click(hide_form); $('#cancel-form').click(hide_form); // ask for confirmation before removing an user $('.action').each(function(){ $(this).hide(); var link = $(this).find('a'); link.click(function(){ if ($(this).hasClass("confirm")){ return true; } $(this).html("{{_("you sure?")}}"); $(this).addClass("confirm"); return false; }); }); // display the remove button on mouse over (and hide them per default) $('.balance tr').hover(function(){ $(this).find('.action').show(); }, function(){ $(this).find('.action').hide(); }); $.datepicker.setDefaults({'dateFormat': 'yy-mm-dd'}); $(".datepicker").datepicker($.datepicker.regional['{{ g.lang }}']); var highlight_owers = function(){ var ower_ids = $(this).attr("owers").split(','); var payer_id = $(this).attr("payer"); $.each(ower_ids, function(i, val){ $('#bal-member-'+val).addClass("ower_line"); }); $("#bal-member-"+payer_id).addClass("payer_line"); }; var unhighlight_owers = function(){ $('[id^="bal-member-"]').removeClass("ower_line payer_line"); }; $('#bill_table tbody tr').hover(highlight_owers, unhighlight_owers); {% endblock %} {% block sidebar %} {% endblock %} {% block content %}
{{ _("The project identifier is") }} {{ g.project.id }}, {{ _("remember it!") }}
{{ _("Add a new bill") }} {% if bills.count() > 0 %} {% for bill in bills %} {% endfor %}
{{ _("When?") }}{{ _("Who paid?") }}{{ _("For what?") }}{{ _("For whom?") }}{{ _("How much?") }}{{ _("Actions") }}
{{ bill.date }} {{ bill.payer }} {{ bill.what }} {{ bill.owers|join(', ', 'name') }} {{ "%0.2f"|format(bill.amount) }} ({{ "%0.2f"|format(bill.pay_each()) }} {{ _("each") }})
{% else %}

{{ _("Nothing to list yet. You probably want to") }} {{ _("add a bill") }} ?

{% endif %} {% endblock %}