1
0
Fork 0
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:
Alexis Metaireau 2011-12-03 16:15:17 +01:00
parent 3a2958a44e
commit 79cbd72c03

View 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 %}