{% extends "base.html" %} {% load wiki_markup %} {% block title %}{{ cave.official_name|wiki_to_html }}{% endblock %} {% block content %}
{% if cave.kataster_number %} {{ cave.kataster_number|wiki_to_html }} {% if cave.entrancelist %} - {{ cave.entrancelist|wiki_to_html }} {% endif %} {% if cave.unofficial_number %}
({{ cave.unofficial_number|wiki_to_html }}) {% endif %} {% endif %}
{{ cave.official_name|wiki_to_html }} {{ cave.kataster_code|wiki_to_html }}
{% if cave.entrances %}

Entrances

{% for ent in cave.entrances %} {{ ent.entrance_letter|wiki_to_html }} {% if ent.entrance.marking %} Marking: {{ ent.entrance.marking_val|wiki_to_html }} {% endif %}
{% endfor %} {% endif %} {% if cave.explorers %}

Explorers

{{ cave.explorers|wiki_to_html }} {% endif %} {% if cave.underground_description %}

Underground Description

{{ cave.underground_description|wiki_to_html }} {% endif %} {% if cave.equipment %}

Equipment

{{ cave.equipment|wiki_to_html }} {% endif %} {% if cave.references %}

References

{{ cave.references|wiki_to_html }} {% endif %} {% if cave.survey %}

Survey

{{ cave.survey|wiki_to_html }} {% endif %} {% if cave.kataster_status %}

Kataster_status

{{ cave.kataster_status|wiki_to_html }} {% endif %} {% if cave.underground_centre_line %}

Underground Centre Line

{{ cave.underground_centre_line|wiki_to_html }} {% endif %} {% if cave.survex_file %}

Survex File

{{ cave.survex_file|wiki_to_html }} {% endif %} {% if cave.notes %}

Notes

{{ cave.notes|wiki_to_html }} {% endif %} {% endblock %}