summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2012-01-11 01:53:52 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2012-01-11 01:53:52 +0100
commitec4cd0e381579664cb63851fc22f988e59fe4651 (patch)
treefe24acc51672ecc692ee40e49ee581d4812c27c2 /templates/pages/constlist.mako
parentecf1527951881fefa55738eb6a6fc668680ef681 (diff)
downloadkosten-ec4cd0e381579664cb63851fc22f988e59fe4651.tar.gz
kosten-ec4cd0e381579664cb63851fc22f988e59fe4651.tar.bz2
kosten-ec4cd0e381579664cb63851fc22f988e59fe4651.zip
Add EUR everywhere :)
Diffstat (limited to '')
-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>