diff options
Diffstat (limited to '')
-rw-r--r-- | templates/pages/add.mako | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/pages/add.mako b/templates/pages/add.mako index 4c7116f..e104fc5 100644 --- a/templates/pages/add.mako +++ b/templates/pages/add.mako @@ -9,17 +9,17 @@ <input type="submit" /> </form> -<%def name="heading()"> +<%block name="heading"> Neue Ausgabe hinzufügen -</%def> +</%block> -<%def name="js()"> +<%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> -</%def> +</%block> -<%def name="style()"> +<%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" /> -</%def> +</%block> |