summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
blob: 6084d1119831baf8a8cc17d1eafc7041820319d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%inherit file="/page.mako" />

<p><a href=${"/const/add" | url}>Neuen Eintrag hinzufügen</a></p>

<h2>Aktuell</h2>
<ul class="arrow">
    % for c in current:
        <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
    % endfor
</ul>

<h2>Veraltet</h2>
<ul class="arrow">
    % for c in old:
        <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
    % endfor
</ul>

<%block name="heading">
    Konstante Kosten
</%block>