troggle-unchained/templates/editentrance.html

30 lines
1.0 KiB
HTML

{% extends "cavebase.html" %}
{% block title %}Edit Entrance{% endblock %}
{% block extraheaders %}
{% include 'html_editor_scripts_css.html' %}
{% endblock %}
{% block content %}
<h1>Edit Entrance at cave {{cave.official_name|safe}} - {{cave.unofficial_number}} - {{cave.kataster_number}}</h1>
{% include 'html_editor_pop_ups.html' %}
<h2>{{message}}</h2>
<form action="" method="post">{% csrf_token %}
<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>
{% if entlettereditable %}
<table>{{ entletter }}</table>
{% else %}
<table><tr><th>Entrance Letter</th><td>{{ entletter }}</td></table>
{% endif %}
<table>{{ form }}</table>
<p><input type="submit" value="Submit" /></p>
</form>
{% endblock %}