summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
blob: 84466413938ce438af8424a1561d8fff81af73f9 (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})</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})</a></li>
    % endfor
</ul>

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