mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
19 lines
463 B
HTML
19 lines
463 B
HTML
{% extends "cavebase.html" %}
|
|
{% load wiki_markup %}
|
|
{% block title %} {{cave_description}} {% endblock title %}
|
|
{% block editLink %}<a href={{cave_description.get_admin_url}}>Edit description {{cave_description}}</a>{% endblock %}
|
|
|
|
{% block contentheader %}
|
|
{{cave_description.long_name}}
|
|
{% endblock contentheader %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{cave_description.long_name}}</h1>
|
|
<p>
|
|
{{cave_description.description|wiki_to_html}}
|
|
</p>
|
|
|
|
{% endblock content %} |