{% extends "cavebase.html" %} {% block title %} New Cave and Entrance {% endblock %} {% block extraheaders %} {% include 'html_editor_scripts_css.html' %} {% endblock %} {% block content %}

New Cave Prospect

Please fill in the details for a new prospect: a hole which might be a cave. Fields are documented in the cave entry fields guide.

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% for error in field.errors %}{{ error }}{% endfor %}
{% endfor %}
{% if success %}
New prospect data entered successfully. You can edit it here or enter data for another new prospect.
To add more information for this cave, e.g. a relevant survex file, or a second entrance, use the Cave Edit form.
{% endif %} {% endblock %}