summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2021-10-25 00:04:02 +0300
committerPhilip Sargent <philip.sargent@gmail.com>2021-10-25 00:04:02 +0300
commit5807e4a873fc2a7e7ff554b6f6da228a4c2bc103 (patch)
tree102d7c3f67d4faf30957508dbb3f5a38b3fdbc57
parentf9e8cf60bc4880f90293dfaf1abd5aee23b9a5a3 (diff)
downloadtroggle-5807e4a873fc2a7e7ff554b6f6da228a4c2bc103.tar.gz
troggle-5807e4a873fc2a7e7ff554b6f6da228a4c2bc103.tar.bz2
troggle-5807e4a873fc2a7e7ff554b6f6da228a4c2bc103.zip
tidying unused and unavailable JSLIB bits
-rw-r--r--templates/plainbase.html19
-rw-r--r--templates/prospecting.html18
2 files changed, 14 insertions, 23 deletions
diff --git a/templates/plainbase.html b/templates/plainbase.html
deleted file mode 100644
index 5b209cf..0000000
--- a/templates/plainbase.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% autoescape off %}
-<!-- svxfile.html - this text visible because this template has been included -->
-<!-- This is ONLY used by templates/prospecting.html -->
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>{% block title %}{% endblock %}</title>
-<link rel="stylesheet" type="text/css" href="/css/main2.css" />
-<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" />
-<script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script>
-<script src="{{ settings.JSLIB_URL }}jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
-
-{% block extrahead %}{% endblock %}
-</head>
-<body {% block bodyattrs %}{% endblock %}>
-{% block body %}{% endblock %}
-</body>
-</html>
-{% endautoescape %}
diff --git a/templates/prospecting.html b/templates/prospecting.html
index 9ada16f..dab2958 100644
--- a/templates/prospecting.html
+++ b/templates/prospecting.html
@@ -1,8 +1,16 @@
-{% extends "plainbase.html" %}
+{% autoescape off %}
-{% block title %}Prospecting{% endblock %}
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<title>Prospecting Guide</title>
+<link rel="stylesheet" type="text/css" href="/css/main2.css" />
+<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" />
+<script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script>
+<script src="{{ settings.JSLIB_URL }}jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
-{% block body %}
+</head>
+<body>
<h1>Prospecting Guide</h1>
@@ -126,4 +134,6 @@ and you can't see any annotations unless you zoom in:
</table>
{% endfor %}
-{% endblock %}
+</body>
+</html>
+{% endautoescape %}