mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
oops, forgot to include dashboard.html in a previous commit. See #42
This commit is contained in:
parent
3a2958a44e
commit
79cbd72c03
1 changed files with 11 additions and 0 deletions
11
budget/templates/dashboard.html
Normal file
11
budget/templates/dashboard.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block content %}
|
||||
|
||||
<table id="bill_table" class="list_bills common-table zebra-striped">
|
||||
<thead><tr><th>{{ _("Project") }}</th><th>{{ _("Number of members") }}</th><th>{{ _("Number of bills") }}</th></tr></thead>
|
||||
<tbody>{% for project in projects %}
|
||||
<tr><td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td></tr>
|
||||
{% endfor %}</tbody>
|
||||
</table>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in a new issue