summaryrefslogtreecommitdiffstats
path: root/templates/cavebase.html
diff options
context:
space:
mode:
authorMartin Green <martin.speleo@gmail.com>2011-07-11 00:15:59 +0100
committerMartin Green <martin.speleo@gmail.com>2011-07-11 00:15:59 +0100
commit65c55f0f21fe85a678d48842da10e0ea5c917ae5 (patch)
tree0f465b9415901f9eedd0fc5e1e87837ce6bb70a4 /templates/cavebase.html
parent8578a3097a44ffd277f65127b865160ab79ad317 (diff)
downloadtroggle-65c55f0f21fe85a678d48842da10e0ea5c917ae5.tar.gz
troggle-65c55f0f21fe85a678d48842da10e0ea5c917ae5.tar.bz2
troggle-65c55f0f21fe85a678d48842da10e0ea5c917ae5.zip
Removed conversion to wiki, replaced Surveystation models with text, added area 1623 to all relevant caves.
Diffstat (limited to 'templates/cavebase.html')
-rw-r--r--templates/cavebase.html52
1 files changed, 25 insertions, 27 deletions
diff --git a/templates/cavebase.html b/templates/cavebase.html
index 8e8132e..6e27111 100644
--- a/templates/cavebase.html
+++ b/templates/cavebase.html
@@ -1,28 +1,26 @@
-{% extends "base.html" %}
-{% load wiki_markup %}
+<html>
+<head>
-{% block title %}{{ cave.official_name|wiki_to_html_short }}{% endblock %}
-
-{% block contentheader %}
-<table id="cavepage">
-<tr>
- <th id="kat_no">
- {% if cave.kataster_number %}
- {{ cave.kataster_number|wiki_to_html_short }}
- {% if cave.entrancelist %}
- - {{ cave.entrancelist|wiki_to_html_short }}
- {% endif %}
- {% if cave.unofficial_number %}
- <br />({{ cave.unofficial_number|wiki_to_html_short }})
- {% endif %}
- {% endif %}
- </th>
- <th id="name">
- {{ cave.official_name|wiki_to_html_short }}
- </th>
- <th id="status">
- {{ cave.kataster_code|wiki_to_html_short }}
- </th>
-</tr>
-</table>
-{% endblock %} \ No newline at end of file
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>{% block title %}{{ cave.official_name|safe }}{% endblock %}
+</title>
+<link rel="stylesheet" type="text/css" href="/css/main2.css" />
+<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/redmond/jquery-ui-1.8.14.custom.css" />
+<script src="{{ settings.MEDIA_URL }}js/jquery.js" type="text/javascript"></script>
+<script src="{{ settings.MEDIA_URL }}js/jquery-ui-1.8.14.custom.min.js" type="text/javascript"></script>
+<script type="text/javascript">
+ $(function() {
+ $( "#tabs" ).tabs();
+ });
+</script>
+</head>
+<body>
+{% block content %}{% endblock %}
+{% block menu %}
+<ul id="links">
+<li>Back to <a href="/index.htm">Expedition home page</a></li>
+<li>Back to <a href="http://cucc.survex.com/">CUCC home page</a></li>
+</ul>
+{% endblock %}
+</body>
+</html>