diff options
Diffstat (limited to 'budget/templates/list_bills.html')
| -rw-r--r-- | budget/templates/list_bills.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index 145f4f4..6d4807b 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -1,4 +1,12 @@ {% extends "layout.html" %} + +{% block top_menu %} +<ul> + <li><a href="{{ url_for('add_bill', project_id=project.id) }}">Add a bill</a></li> + <li><a href="{{ url_for('add_member', project_id=project.id) }}">Add a member</a></li> +</ul> +{% endblock %} + {% block content %} <div id="leftmenu" class="span-6"> <ul> @@ -7,7 +15,7 @@ {% endfor %} </ul> {% set form=member_form %} - {% include "member_form.html" %} + {#% include "member_form.html" %#} </div> <div id="content" class="span-18 last"> {% if bills.count() > 0 %} |
