{% extends "layout.html" %} {% block content %}
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} | {{_("Newest bill")}} | {{_("Oldest bill")}} | ||
---|---|---|---|---|---|---|
{{ 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 %} |