summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/constlist.mako')
-rw-r--r--templates/pages/constlist.mako4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/pages/constlist.mako b/templates/pages/constlist.mako
index 8446641..6084d11 100644
--- a/templates/pages/constlist.mako
+++ b/templates/pages/constlist.mako
@@ -5,14 +5,14 @@
<h2>Aktuell</h2>
<ul class="arrow">
% for c in current:
- <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense})</a></li>
+ <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</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>
+ <li><a href=${"/const/%s" % c.id | url}>${c.description} (${c.expense | eur})</a></li>
% endfor
</ul>