summaryrefslogtreecommitdiff
path: root/templates/show.mako
blob: 97c273159d865021605fbd71d8840c03572c972a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<%inherit file="/page.mako" />

% for e in exps:
    % if len(exps) > 1:
        <h2>${get_d(e)}</h2>
    % endif
    % for c in e.catexps:
        <strong>${c.cat.name}</strong>    ${c.expense}<br>
    % endfor
    <strong>Constant:</strong> ${e.const}<br>
    <strong>In Summa:</strong> ${e.sum}<br><br>

    <h3 class="details_heading">Details</h3>
    <div class="details">
        <ul>
        % for exp in e.all:
            <li>${exp.day}.${exp.month}. -- ${exp.description}: ${exp.expense} </li>
        % endfor
        </ul>
    </div>
% endfor

<%def name="heading()">
    % if len(exps) > 1:
        Current expenses
    % else:
        Expenses for ${get_d(exps[0])}
    % endif

</%def>

<%def name="get_d(e)">
    ${e.date.year}/${e.date.month}
</%def>

<%def name="js()">
    ${parent.js()}
    <script type="text/javascript" src=${"/static/js/show.js" | url}></script>
</%def>