aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/recent_projects.html
blob: 9769c595ac420efee32397c1954f53b19feadc4c (plain)
1
2
3
4
5
6
7
8
{% if 'projects' in session %}
    <h3>Recently visited 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 %}