summaryrefslogtreecommitdiffstats
path: root/templates/cavebase.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/cavebase.html')
-rw-r--r--templates/cavebase.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/cavebase.html b/templates/cavebase.html
new file mode 100644
index 0000000..f546ebf
--- /dev/null
+++ b/templates/cavebase.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% load wiki_markup %}
+
+{% block title %}{{ cave.official_name|wiki_to_html }}{% 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