diff options
Diffstat (limited to 'templates/editcave.html')
-rw-r--r-- | templates/editcave.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/editcave.html b/templates/editcave.html index bc3514d..9a238b4 100644 --- a/templates/editcave.html +++ b/templates/editcave.html @@ -53,11 +53,34 @@ and these same fields appear in the alternative file upload process as described </div> {% endif %} {% include 'html_editor_pop_ups.html' %} + +<!-- 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. --> <h2>{{message}}</h2> + <form action="" method="post">{% csrf_token %} <table>{{ form }} <!-- begin caveAndEntranceFormSet-->{{caveAndEntranceFormSet}}<!--end caveAndEntranceFormSet--></table> <p><input type="submit" value="Submit" /></p> </form> +<h3>kataster code</h3> +This is the 'length-or-depth/type exploration' +<a href="/katast.htm +">code used in the Austrian kataster</a>, e.g '1/S +' +means "more than 10 but less than 50m long or deep, with a pitch, completely explored". +<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 ?) +</pre> +<h3>kataster status</h3><pre> + - unerforscht (unexplored) + = befahren (visited) + × teilweise vermessen (partly surveyed) + + erforscht (exploration considered complete) +</pre> {% endblock %} |