diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html index 91f27e96..9ef231d0 100644 --- a/ihatemoney/templates/dashboard.html +++ b/ihatemoney/templates/dashboard.html @@ -4,7 +4,7 @@
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} | {{_("Newest bill")}} | {{_("Oldest bill")}} | {{_("Actions")}} |
---|---|---|---|---|---|
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} | +|||
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} | {% if project.has_bills() %}{{ project.get_bills().all()[0].date }} | {{ project.get_bills().all()[-1].date }} | @@ -15,6 +15,7 @@{{ _('edit') }} {{ _('delete') }} + |