mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-30 02:02:38 +02:00
8 lines
233 B
HTML
8 lines
233 B
HTML
{% 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 %}
|