mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-01 10:42:24 +02:00
11 lines
463 B
HTML
11 lines
463 B
HTML
{% 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 %}
|
|
|