1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/budget/templates/list_bills.html

87 lines
3 KiB
HTML
Raw Normal View History

2011-03-10 03:37:21 +01:00
{% extends "layout.html" %}
2011-07-29 17:14:33 +02:00
{% block js %}
// display the form when clicking on the "add bill" button
$('#add_bill_button').click(function(){
$('#add_bill').show(200);
$(this).hide();
$('#hide_bill_form').show();
return false;
});
// and provide a mechanism to hide it back
$('#hide_bill_form').click(function(){
$('#add_bill').hide(200);
$(this).hide();
$('#add_bill_button').show();
return false;
});
// ask for confirmation before removing an user
$('a.remove').each(function(){
$(this).hide();
$(this).click(function(){
return confirm("are you sure?");
});
});
// display the remove button on mouse over (and hide them per default)
$('.members li').hover(function(){
$(this).children('a.remove').show();
}, function(){
$(this).children('a.remove').hide();
});
{% endblock %}
2011-07-29 17:14:33 +02:00
{% block top_menu %}
<ul>
2011-08-09 23:49:09 +02:00
<li><a href="{{ url_for("exit") }}">logout</a></li>
2011-07-29 17:14:33 +02:00
</ul>
{% endblock %}
2011-03-10 03:37:21 +01:00
{% block content %}
2011-08-09 23:49:09 +02:00
<div id="leftmenu" class="span-6">
<ul class="members">
2011-07-31 23:55:18 +02:00
{% set balance = project.get_balance() %}
{% for member in project.active_members %}
2011-08-09 23:49:09 +02:00
<li class="{{ loop.cycle("even", "odd") }}">
2011-08-10 01:05:25 +02:00
<span class="balance {% if balance[member] > 0 %}positive{% elif balance[member] < 0 %}negative{% endif %}">{{ balance[member] }}</span>
2011-08-09 23:49:09 +02:00
{{ member.name }}
<a class="remove" href="{{ url_for("remove_member", project_id=project.id, member_id=member.id) }}">delete</a></li>
2011-07-23 20:36:13 +02:00
{% endfor %}
</ul>
2011-07-31 23:55:18 +02:00
<form action="{{ url_for("add_member", project_id=project.id) }}" method="post">
{{ forms.add_member(member_form) }}
</form>
2011-07-23 20:36:13 +02:00
</div>
2011-08-09 23:49:09 +02:00
<div id="content" class="uniForm span-18 last">
<a id="add_bill_button" class="awesome large green button fright" href="{{ url_for('add_bill', project_id=project.id) }}">Add a bill</a>
<a id="hide_bill_form" class="awesome button fright" style="display: none;" href="#">Hide form</a>
<form id="add_bill" action="{{ url_for('add_bill', project_id=project.id) }}" method="post" style="width: 400px; display: none">{{ forms.add_bill(bill_form) }}</form>
2011-07-31 23:55:18 +02:00
2011-07-23 20:36:13 +02:00
{% if bills.count() > 0 %}
<table class="list_bills">
<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>
2011-07-23 20:36:13 +02:00
<tbody>
{% for bill in bills %}
<tr class="{{ loop.cycle("odd", "even") }}">
<td>{{ bill.date }}</td>
<td>{{ bill.payer }}</td>
<td>{{ bill.what }}</td>
<td>{% for ower in bill.owers %}{{ ower.name }} {% endfor %}</td>
<td>{{ bill.amount }} ({{ bill.pay_each() }} each)</td>
<td><a href="{{ url_for("edit_bill", bill_id=bill.id, project_id=project.id) }}">edit</a>
<a href="{{ url_for("delete_bill", bill_id=bill.id, project_id=project.id) }}">delete</a></td>
2011-07-23 20:36:13 +02:00
</tr>
{% endfor %}
</tbody>
</table>
2011-03-10 03:37:21 +01:00
2011-07-23 20:36:13 +02:00
{% else %}
<p>Nothing to list yet. You probably want to <a href="{{ url_for("add_bill", project_id=project.id) }}">add a bill</a> ?</p>
{% endif %}
</div>
2011-03-10 03:37:21 +01:00
{% endblock %}