aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/recent_projects.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/recent_projects.html')
-rw-r--r--budget/templates/recent_projects.html8
1 files changed, 0 insertions, 8 deletions
diff --git a/budget/templates/recent_projects.html b/budget/templates/recent_projects.html
deleted file mode 100644
index df4972d..0000000
--- a/budget/templates/recent_projects.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% if 'projects' in session %}
-<h3>{{ _("Your projects") }}</h3>
- <ul>
- {% for id, name in session['projects'] %}
- <li><a href="{{ url_for("list_bills", project_id=id) }}">{{ name }}</a></li>
- {% endfor %}
- </ul>
-{% endif %}