summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
blob: 12f6f85c989bdf08af82874ea610a0a9cd8f1c9e (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}>Add new</a></p>

<h2>Current</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>Outdated</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()">
    Constant Expenses
</%def>