diff options
Diffstat (limited to 'budget/templates')
| -rw-r--r-- | budget/templates/dashboard.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/budget/templates/dashboard.html b/budget/templates/dashboard.html index a65bd76..44ece2d 100644 --- a/budget/templates/dashboard.html +++ b/budget/templates/dashboard.html @@ -2,9 +2,9 @@ {% 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> + <thead><tr><th>{{ _("Project") }}</th><th>{{ _("Number of members") }}</th><th>{{ _("Number of bills") }}</th><th>{{_("Newest bill")}}</th><th>{{_("Oldest bill")}}</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> + <tr><td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td><td>{{ project.get_bills()[1].date }}</td><td>{{ project.get_bills()[-1].date }}</tr> {% endfor %}</tbody> </table> {% endblock %} |
