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 %}
|
2023-08-02 08:17:48 +01:00
|
|
|
<h1>Edit Entrance at cave {{cave.official_name|safe}} - {{cave.unofficial_number}} - {{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 %}
|
2023-08-02 08:17:48 +01:00
|
|
|
<p> When you first create a new entrance, you will probably not have any cave survey data for the entrance location,
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
so the Easting/Northing fields will be blank.
|
|
|
|
<li>Put in the location of your new entrance in the WGS84 latitude and longitude fields.
|
|
|
|
<li>Read the <a href="/handbook/survey/coord2.html#summary">brief explanation</a> of location data in the handbook.
|
|
|
|
</ul>
|
|
|
|
|
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 %}
|