{% extends "layout.html" %} {% block content %} {% if is_admin_dashboard_activated %} {% for project in projects|sort(attribute='name') %} {% if project.has_bills() %} {% else %} {% endif %} {% endfor %}
{{ _("Project") }} {{ _("Number of participants") }} {{ _("Number of bills") }} {{_("Newest bill")}} {{_("Oldest bill")}} {{_("Actions")}}
{{project.name}} {{ project.members | count }} {{ project.get_bills_unordered().count() }}{{ project.get_bills().all()[0].date }} {{ project.get_bills().all()[-1].date }} {{ _('edit') }}
{{ _('show') }}
{% else %}
{{ _("The Dashboard is currently deactivated.") }}
{% endif %} {% endblock %}