2012-06-10 14:59:21 +01:00
|
|
|
{% extends "cavebase.html" %}
|
2021-04-14 16:28:30 +01:00
|
|
|
|
2012-06-10 14:59:21 +01:00
|
|
|
{% block title %}Edit Entrance{% endblock %}
|
|
|
|
{% block extraheaders %}
|
2022-06-27 00:34:08 +01:00
|
|
|
{% include 'html_editor_scripts_css.html' %}
|
2012-06-10 14:59:21 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
2021-04-14 16:28:30 +01:00
|
|
|
<h1>Edit Entrance - at cave {{cave.official_name|safe}} - {{cave.kataster_number}}</h1>
|
2022-06-27 00:34:08 +01:00
|
|
|
{% include 'html_editor_pop_ups.html' %}
|
2021-04-14 16:28:30 +01:00
|
|
|
<h2>{{message}}</h2>
|
2012-06-10 14:59:21 +01:00
|
|
|
<form action="" method="post">{% csrf_token %}
|
2022-08-01 15:04:22 +01:00
|
|
|
{% if entlettereditable %}
|
|
|
|
<table>{{ entletter }}</table>
|
|
|
|
{% else %}
|
|
|
|
<table><tr><th>Entrance Letter</th><td>{{ entletter }}</td></table>
|
|
|
|
{% endif %}
|
2021-04-14 16:28:30 +01:00
|
|
|
<table>{{ form }}</table>
|
2012-08-06 11:19:48 +01:00
|
|
|
<p><input type="submit" value="Submit" /></p>
|
2012-06-10 14:59:21 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|