{% extends "layout.html" %} {% block title %}- {{ g.project.name }}{% endblock %} {% block js %} // display the form when clicking on the "add bill" button var show_form = function(){ $('#bill-form').show(70); $("#new-bill").hide(); return false; } // and provide a mechanism to hide it back var hide_form = function(){ $("#bill-form").hide(70); $("#new-bill").show(); 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 $('a.remove').each(function(){ $(this).hide(); $(this).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('.remove').show(); }, function(){ $(this).find('.remove').hide(); }); {% endblock %} {% block sidebar %}

{{ _("Balance") }}

{% set balance = g.project.get_balance() %} {% for member in g.project.members %} {% if member.activated or balance[member] != 0 %} {% endif %} {% endfor %}
{{ member.name }} {% if balance[member] > 0 %}+{% endif %}{{ balance[member] }} {% if member.activated %}{{ _("delete") }}{% else %}{{ _("reactivate") }}{% endif %}
{{ forms.add_member(member_form) }}
{% endblock %} {% block content %}
{{ _("The project identifier is") }} {{ g.project.id }}, {{ _("remember it or add this page to you bookmarks!") }}
{{ _("Add a new bill") }} {% if bills.count() > 0 %} {% for bill in bills %} {% endfor %}
{{ _("When?") }}{{ _("Who paid?") }}{{ _("For what?") }}{{ _("Owers") }}{{ _("How much?") }}{{ _("Actions") }}
{{ bill.date }} {{ bill.payer }} {{ bill.what }} {% for ower in bill.owers %}{{ ower.name }} {% endfor %} {{ bill.amount }} ({{ bill.pay_each() }} each) {{ _("edit") }} {{ _("delete") }}
{% else %}

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

{% endif %} {% endblock %}