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

<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>