summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/pages/constlist.mako19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/pages/constlist.mako b/templates/pages/constlist.mako
new file mode 100644
index 0000000..83fd9f3
--- /dev/null
+++ b/templates/pages/constlist.mako
@@ -0,0 +1,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>