summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-02-13 12:55:19 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-02-13 12:55:19 +0100
commit70f087a4f31da35776d803b0190a1b29caf21441 (patch)
tree4d35fd9967da082e3998b4b603c1ccc5c60e2839 /templates
parent458b4e7a1135df8859e94b10e316d3f8c5c5a561 (diff)
downloadkosten-70f087a4f31da35776d803b0190a1b29caf21441.tar.gz
kosten-70f087a4f31da35776d803b0190a1b29caf21441.tar.bz2
kosten-70f087a4f31da35776d803b0190a1b29caf21441.zip
Also print 'future' const expenses
Diffstat (limited to 'templates')
-rw-r--r--templates/pages/constlist.mako23
1 files changed, 17 insertions, 6 deletions
diff --git a/templates/pages/constlist.mako b/templates/pages/constlist.mako
index 6084d11..f870b80 100644
--- a/templates/pages/constlist.mako
+++ b/templates/pages/constlist.mako
@@ -9,12 +9,23 @@
% endfor
</ul>
-<h2>Veraltet</h2>
-<ul class="arrow">
- % for c in old:
- <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
- % endfor
-</ul>
+% if future:
+ <h2>Zukünftige</h2>
+ <ul class="arrow">
+ % for c in future:
+ <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
+ % endfor
+ </ul>
+% endif
+
+% if old:
+ <h2>Veraltet</h2>
+ <ul class="arrow">
+ % for c in old:
+ <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
+ % endfor
+ </ul>
+% endif
<%block name="heading">
Konstante Kosten