blob: 3ce46fdd39a9cd89d9ac72a4f51db4927e55f88a (
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
|
<%inherit file="/page.mako" />
% if not form.valid:
FEHLER!
% endif
<form name="add_expense" method="post">
${form.render()}
<%block name="form_buttons">
<input type="submit" name="changeB" />
</%block>
</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>
|