summaryrefslogtreecommitdiff
path: root/templates/pages/add.mako
blob: c1f4ae7262756cd98f60d477f7e7ca93a36d3402 (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
<%inherit file="/page.mako" />

% if not form.valid:
    FEHLER!
% endif

<form name="add_expense" method="post">
    ${form.render()}
    <input type="submit" />
</form>

<%block name="heading">
    Neue Ausgabe hinzufügen
</%block>

<%block name="js">
    ${parent.js()}
    <script type="text/javascript" src=${"/static/jqueryui/jquery-ui-1.8.2.js" | url}></script>
    <script type="text/javascript" src=${"/static/js/add.js" | url}></script>
</%block>

<%block name="style">
    ${parent.style()}
    <link href=${"/static/jqueryui/css/ui-darkness/jquery-ui-1.8.2.custom.css" | url} rel="stylesheet" type="text/css" />
</%block>