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