diff options
Diffstat (limited to 'ishtar/templates/sheet.html')
| -rw-r--r-- | ishtar/templates/sheet.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ishtar/templates/sheet.html b/ishtar/templates/sheet.html index 8da56345c..e2d1cc6c0 100644 --- a/ishtar/templates/sheet.html +++ b/ishtar/templates/sheet.html @@ -4,21 +4,22 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <link rel="shortcut icon" href="{{MEDIA_URL}}/media/images/favicon.png"> <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} </title> + {% block css_head %} <link rel="stylesheet" href="{{MEDIA_URL}}/media/style.css" /> - <link rel="stylesheet" href="{{MEDIA_URL}}/media/style_basic.css" /> + {% endblock %} </head> <body> {% endblock %} <div class="sheet" id='{{window_id}}'> +{% block head_sheet %} <script type="text/javascript">var last_window='{{window_id}}';</script> <div class="head"> <a href='#' onclick='$("#{{window_id}}").hide("slow")'>{% trans "Close" %}</a> - <a href='#' onclick='$("#window > div").hide("slow");$("#window").html("")'> {% trans "Close all windows" %} -</a></div> +</a></div>{% endblock %} <div class="body"> {% block content %}{% endblock %} </div> |
