summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
blob: 02ff5aa3cd9701b061df473b095d4f910775e005 (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>

<%def name="heading()">
    Konstante Kosten
</%def>