diff options
Diffstat (limited to 'ishtar_common/templates/sheet.html')
-rw-r--r-- | ishtar_common/templates/sheet.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ishtar_common/templates/sheet.html b/ishtar_common/templates/sheet.html new file mode 100644 index 000000000..5608a684f --- /dev/null +++ b/ishtar_common/templates/sheet.html @@ -0,0 +1,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%} |