summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/sheet.html
blob: 5608a684fca3c4ef896ea21df5548e5b7eff7409 (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
{% load i18n %}
{% block main_head %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
    </title>
    {% block css_head %}
    <link rel="stylesheet" href="{{MEDIA_URL}}/media/style.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='closeAllWindows();'>
{% trans "Close all windows" %}
</a></div>{% endblock %}
<div class="body">
{% block content %}{% endblock %}
</div>
</div>
{%block main_foot%}
</body>
</html>
{%endblock%}