summaryrefslogtreecommitdiff
path: root/archaeological_files_pdl/templates
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-08-19 15:12:43 +0200
committerÉtienne Loks <etienne.loks@proxience.com>2015-08-19 15:12:43 +0200
commitab53d8cfdcfbbaff8cc5b6bc0e44ee923485d9bb (patch)
tree840ab617f2927fec8143f6005cfd2d498d1c738f /archaeological_files_pdl/templates
parentb4a8dcb2836c202edf250c9953327a9ca5280004 (diff)
downloadIshtar-ab53d8cfdcfbbaff8cc5b6bc0e44ee923485d9bb.tar.bz2
Ishtar-ab53d8cfdcfbbaff8cc5b6bc0e44ee923485d9bb.zip
Archaeological files: change planning service management
Diffstat (limited to 'archaeological_files_pdl/templates')
-rw-r--r--archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html38
1 files changed, 30 insertions, 8 deletions
diff --git a/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html b/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html
index 6fd9eef71..85a1156aa 100644
--- a/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html
+++ b/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html
@@ -1,22 +1,44 @@
-{% extends "ishtar/wizard/wizard_person_orga.html" %}
+{% extends "ishtar/wizard/default_wizard.html" %}
+{% load i18n range table_form %}
+{% block wizard_form %}
+<form action="." method="post" name='wizard'{% if wizard.form.file_upload %} enctype="multipart/form-data"{% endif %}>{% csrf_token %}
+<div class='form'>
+{% if wizard.form.media %}{{ wizard.form.media }}{% endif %}
+{{ wizard.management_form }}
+
+<table>
+ {% if wizard.form.non_field_errors %}<tr class='errors'>
+ <td colspan='3'>{{wizard.form.non_field_errors}}</td>
+ </tr>{%endif%}
-{% block corporation %}
<tr class='required'>
<th>{{ wizard.form.planning_service.label_tag }}</th>
<td> {{ wizard.form.planning_service.errors }}{{wizard.form.planning_service|safe}}</td>
</tr>
-{% endblock %}
-
-{% block natural %}
- <tr class='required'>
+ <tr>
<th>{{ wizard.form.responsible_town_planning_service.label_tag }}</th>
<td> {{ wizard.form.responsible_town_planning_service.errors }}{{wizard.form.responsible_town_planning_service|safe}}</td>
</tr>
-{% endblock %}
+</table>
+
-{% block otherfields %}
+<div>
+<table>
<tr class='required'>
<th>{{ wizard.form.reference_number.label_tag }}</th>
<td> {{ wizard.form.reference_number.errors }}{{wizard.form.reference_number|safe}}</td>
</tr>
+</table>
+</div>
+
+<input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
+{{ previous_fields|safe }}
+{% block "validation_bar" %}
+{% include 'ishtar/wizard/validation_bar.html' %}
+{% endblock %}
+</div>
+</form>
{% endblock %}
+
+
+