mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
f61d1432c7
The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12
8 lines
240 B
HTML
8 lines
240 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 %}
|