mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +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 %}
|