aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/recent_projects.html
blob: df4972d6da22739cb385d5b018ff8a8b34d62eca (plain)
1
2
3
4
5
6
7
8
{% 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 %}