2012-01-07 19:05:25 +00:00
{% extends "cavebase.html" %}
2023-07-22 20:26:50 +01:00
{% block title %}
2023-07-27 10:21:50 +01:00
{% if cave.official_name or cave.kataster_number or cave.unofficial_number %}
2023-07-22 20:26:50 +01:00
Edit Cave - {{cave.official_name|safe}} - {{cave.kataster_number}}
{% else %}
New Cave Creation Form
{% endif %}
{% endblock %}
2012-01-07 19:05:25 +00:00
{% block extraheaders %}
2022-06-26 21:29:46 +01:00
{% include 'html_editor_scripts_css.html' %}
2012-01-07 19:05:25 +00:00
{% endblock %}
{% block content %}
2023-07-27 10:21:50 +01:00
{% if cave.official_name or cave.kataster_number or cave.unofficial_number %}
2022-07-15 14:04:07 +01:00
< h1 > Edit Cave - {{cave.official_name|safe}} {{cave.reference}}< / h1 >
2023-07-22 20:26:50 +01:00
< p > The fields on this form, two of which are vital, are documented explicitly on the page
< a href = "/handbook/survey/caveentryfields.html" > cave entry fields< / a >
and these same fields appear in the alternative file upload process as described in
< a href = "/handbook/survey/newcavefile.html" > new cave file< / a > .
< p > As it says there,
< em > "There are a lot of fields on the 'new/edit cave' page and the 'new/edit entrance' page and some of them are a quite mysterious.
< a href = "/handbook/survey/caveentryfields.html" > This page< / a > explains what they mean."< / em >
{% else %}
< h1 > New Cave Creation< / h1 >
< div style = "padding: 20px; border: 2px solid red;" >
< b >
< p > < font style = "color: red" > WARNING< / font >
< p > This form is the < font style = "color: red" > SIXTH< / font > step in
the expo online cave recording system.
< p > The whole process starts at step < font style = "color: blue" > ONE< / font > here: < a href = "/handbook/survey/newcave.html" > Great, I have discovered a new cave...< / a > .
< p > But even if you are happy and confident that you have understood steps 1 to 5, please go through the recommended procedure
of editing an existing cave entry first, before trying to create a totally new one.
This is described under the section "Recommended procedure" on the page < a href = "/handbook/survey/caveentry.html" > CaveEntry< / a >
especially sub-heading "Edit Cave form" and please go through the example edit process for caves
Plateauhö hle 171 and Plateauhö hle 172, as described there.
< p >
If you have not done all the preceeding steps, cancel this form and go back and do them now.
Click < a href = "/handbook/survey/newcave.html" > here< / a > .
< / b >
< p > This form contains many esoteric and non-obvious data requirements, which will give you a
frustrating time if you try to persist without being familiar with how all the bits fit together.
< p > The fields on this form, two of which are vital, are documented explicitly on the page
< a href = "/handbook/survey/caveentryfields.html" > cave entry fields< / a >
and these same fields appear in the alternative file upload process as described in
< a href = "/handbook/survey/newcavefile.html" > new cave file< / a > .
< p > As it says there,
< em > "There are a lot of fields on the 'new/edit cave' page and the 'new/edit entrance' page and some of them are a quite mysterious.
< a href = "/handbook/survey/caveentryfields.html" > This page< / a > explains what they mean."< / em >
< / div >
{% endif %}
2022-06-26 21:29:46 +01:00
{% include 'html_editor_pop_ups.html' %}
2023-11-14 13:55:11 +00:00
<!-- If you are looking for the furniture that creates the fields on this form, you need to look
at troggle/core/forms.py ass this uses a Django magic form creation thinggy. -->
2021-04-14 16:28:30 +01:00
< h2 > {{message}}< / h2 >
2023-11-14 13:55:11 +00:00
2012-01-07 19:05:25 +00:00
< form action = "" method = "post" > {% csrf_token %}
2023-04-30 19:05:57 +01:00
< table > {{ form }}
<!-- begin caveAndEntranceFormSet --> {{caveAndEntranceFormSet}}<!-- end caveAndEntranceFormSet --> < / table >
2024-06-29 07:25:53 +01:00
< p > < input style = "font-weight: bold; font-size: 200%; font-variant-caps: small-caps; margin-left: 40%;" type = "submit" value = "Submit" / > < / p >
2012-01-07 19:05:25 +00:00
< / form >
2023-11-20 19:04:42 +00:00
< h3 > Kataster code< / h3 >
2023-11-14 13:55:11 +00:00
This is the 'length-or-depth/type exploration'
< a href = "/katast.htm
">code used in the Austrian kataster< / a > , e.g '1/S +'
2023-11-20 19:04:42 +00:00
means "more than 10 but less than 50m long or deep, with a pitch, completely explored". The number is:< br / >
0 - length or depth unknown< br / >
1 - 10 to 50m< br / >
2 - 50 to 500m< br / >
3 - 500m to 5km< br / >
2023-11-14 13:55:11 +00:00
< pre >
T Trockenhö hlen (Dry caves)
W Wasserhö hlen (Caves with water)
(W) Zeitweilig aktiv Wasserhö hlen (Caves with seasonal water)
E Eishohlen (Caves with ice formations)
S Schachthö hlen (Caves with pitches)
H Halbhö hlen (Rock shelters ?)
2023-11-20 19:04:42 +00:00
2023-11-14 13:55:11 +00:00
- unerforscht (unexplored)
= befahren (visited)
× teilweise vermessen (partly surveyed)
+ erforscht (exploration considered complete)
< / pre >
2012-01-07 19:05:25 +00:00
{% endblock %}