summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/sheet.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-04-04 18:12:56 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-04-04 18:12:56 +0200
commit6c225450c36c0fb58df61dd641f25fa78db2c7a5 (patch)
treee60ea27f8e8189e5dcdd02885358d72be34295a9 /ishtar_common/templates/sheet.html
parent157259f4a9a030367f123ae1b2802c529b151197 (diff)
downloadIshtar-6c225450c36c0fb58df61dd641f25fa78db2c7a5.tar.bz2
Ishtar-6c225450c36c0fb58df61dd641f25fa78db2c7a5.zip
Rename and move sheets templates
Diffstat (limited to 'ishtar_common/templates/sheet.html')
-rw-r--r--ishtar_common/templates/sheet.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/ishtar_common/templates/sheet.html b/ishtar_common/templates/sheet.html
deleted file mode 100644
index 5608a684f..000000000
--- a/ishtar_common/templates/sheet.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{% 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%}