From 79cbd72c03326080c69e6b708203ed65a68dff16 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sat, 3 Dec 2011 16:15:17 +0100 Subject: [PATCH] oops, forgot to include dashboard.html in a previous commit. See #42 --- budget/templates/dashboard.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 budget/templates/dashboard.html 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 %} + + + + {% for project in projects %} + + {% endfor %} +
{{ _("Project") }}{{ _("Number of members") }}{{ _("Number of bills") }}
{{ project.name }}{{ project.members | count }}{{ project.get_bills().count() }}
+{% endblock %} +