blob: 91e1dd68919cff14e8996dfedda5018b5dca60be (
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 %}
|