mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
17 lines
591 B
HTML
17 lines
591 B
HTML
{% extends "cavebase.html" %}
|
|
{% block title %}Edit Cave - {{cave.official_name|safe}} - {{cave.kataster_number}}{% endblock %}
|
|
{% block extraheaders %}
|
|
|
|
<!--<script src="{{ settings.TINY_MCE_MEDIA_URL }}tiny_mce.js" type="text/javascript"></script>-->
|
|
{% endblock %}
|
|
{% block content %}
|
|
<h1>Edit Cave - {{cave.official_name|safe}} - {{cave.kataster_number}}</h1>
|
|
<h2>{{message}}</h2>
|
|
<form action="" method="post">{% csrf_token %}
|
|
<table>{{ form }}{{caveAndEntranceFormSet}}</table>
|
|
{{ versionControlForm }}
|
|
<p><input type="submit" value="Submit" /></p>
|
|
</form>
|
|
|
|
{% endblock %}
|