mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-30 10:12:37 +02:00
8 lines
245 B
HTML
8 lines
245 B
HTML
{% if 'projects' in session %}
|
|
<h3>Recently visited 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 %}
|