{% extends "layout.html" %} {% block content %} {% if is_admin_dashboard_activated %}
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} | {{_("Newest bill")}} | {{_("Oldest bill")}} | {{_("Actions")}} | ||
---|---|---|---|---|---|---|---|
{{ 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 }} | {% else %}{% endif %} | {{ _('edit') }} {{ _('delete') }} {{ _('show') }} |