diff --git a/budget/templates/dashboard.html b/budget/templates/dashboard.html new file mode 100644 index 0000000..a65bd76 --- /dev/null +++ b/budget/templates/dashboard.html @@ -0,0 +1,11 @@ +{% extends "layout.html" %} +{% block content %} + +
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} |
---|---|---|
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} |