2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-01-31 07:22:32 +00:00

tidying unused and unavailable JSLIB bits

This commit is contained in:
Philip Sargent 2021-10-25 00:04:02 +03:00
parent f9e8cf60bc
commit 5807e4a873
2 changed files with 14 additions and 23 deletions

View File

@ -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 %}

View File

@ -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 %}