aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/dashboard.html
blob: a65bd76269d069ce974bd3cd3a02af46d0c2dc8e (plain)
1
2
3
4
5
6
7
8
9
10
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 %}