summaryrefslogtreecommitdiff
path: root/templates/pages/constlist.mako
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:31:16 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:31:16 +0200
commitefd12ebd857281530dd986674ccf3f1aba8f4e20 (patch)
treef67aaf432d094d27c4d729edb106992a8b7cc191 /templates/pages/constlist.mako
parent58165e7f9c72f03604c54f2929b785fc39f760a5 (diff)
downloadkosten-efd12ebd857281530dd986674ccf3f1aba8f4e20.tar.gz
kosten-efd12ebd857281530dd986674ccf3f1aba8f4e20.tar.bz2
kosten-efd12ebd857281530dd986674ccf3f1aba8f4e20.zip
constexps functionality
Diffstat (limited to '')
-rw-r--r--templates/pages/constlist.mako32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/pages/constlist.mako b/templates/pages/constlist.mako
deleted file mode 100644
index f870b80..0000000
--- a/templates/pages/constlist.mako
+++ /dev/null
@@ -1,32 +0,0 @@
-<%inherit file="/page.mako" />
-
-<p><a href=${"/const/add" | url}>Neuen Eintrag hinzufügen</a></p>
-
-<h2>Aktuell</h2>
-<ul class="arrow">
- % for c in current:
- <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
-</%block>