summaryrefslogtreecommitdiff
path: root/ishtar/templates/sheet.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/sheet.html')
-rw-r--r--ishtar/templates/sheet.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/ishtar/templates/sheet.html b/ishtar/templates/sheet.html
deleted file mode 100644
index 5608a684f..000000000
--- a/ishtar/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%}