aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-08-24Add doc building instructions (#263)JocelynDelalande1-0/+16
2017-08-21Add a statistics tab (#257)0livd972d6da22739cb385d5b018ff8a8b34d62eca (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 %}