summaryrefslogtreecommitdiff
path: root/archaeological_files_pdl
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-03-18 16:57:51 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2020-03-18 16:57:51 +0100
commit17dc2e0fe41229687149f44ca7f84be3cfe55a85 (patch)
tree0c711e3f3404775e6da7e35745e0575b6e251936 /archaeological_files_pdl
parent9df350c52e26459cdbbf12956a27964114a1aa12 (diff)
downloadIshtar-17dc2e0fe41229687149f44ca7f84be3cfe55a85.tar.bz2
Ishtar-17dc2e0fe41229687149f44ca7f84be3cfe55a85.zip
Autocomplete widget: add "tips" message on autocomplete field
Diffstat (limited to 'archaeological_files_pdl')
-rw-r--r--archaeological_files_pdl/templates/ishtar/wizard/wizard_preventiveplanning.html116
1 files changed, 0 insertions, 116 deletions
diff --git a/archaeological_files_pdl/templates/ishtar/wizard/wizard_preventiveplanning.html b/archaeological_files_pdl/templates/ishtar/wizard/wizard_preventiveplanning.html
deleted file mode 100644
index 95e8e8841..000000000
--- a/archaeological_files_pdl/templates/ishtar/wizard/wizard_preventiveplanning.html
+++ /dev/null
@@ -1,116 +0,0 @@
-{% 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'>
-{{ wizard.form.media }}
-{{ wizard.management_form }}
-
-<table>
-
-{% if wizard.form.name.errors %}<tr>
- <td colspan="2">{{wizard.form.name.errors}}</td>
-</tr>{% endif %}
-
-<tr class='required'>
- <th><label for="id_preventiveplanning-{{CURRENT_ACTION}}-name">Nom de l'aménagement</label></th>
-</tr>
-<tr class='required'>
- <td>{{wizard.form.name|safe}}</td>
-</tr>
-
-</table>
-
-<h4>Localisation</h4>
-<table>
-
-{% if wizard.form.main_town.errors %}<tr>
- <td colspan="2">{{wizard.form.main_town.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th colspan='2'><label for="id_preventiveplanning-{{CURRENT_ACTION}}-towns">{% trans "Towns" %}</label></th>
-</tr>
-<tr>
- <td>{{wizard.form.town|safe}}</td>
-</tr>
-
-{% if wizard.form.department.errors %}<tr>
- <td colspan="2">{{wizard.form.department.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th colspan='2'><label for="id_preventiveplanning-{{CURRENT_ACTION}}-department">{% trans "Departments" %}</label></th>
-</tr>
-<tr>
- <td>{{wizard.form.department|safe}}</td>
-</tr>
-
-{% if wizard.form.locality.errors %}<tr>
- <td colspan="2">{{wizard.form.locality.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th colspan='2'><label for="id_preventiveplanning-{{CURRENT_ACTION}}-locality">Lieu-dit</label></th>
-</tr>
-<tr>
- <td colspan='2'>{{wizard.form.locality|safe}}</td>
-</tr>
-
-{% if wizard.form.address.errors %}<tr>
- <td colspan="2">{{wizard.form.address.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th colspan='2'><label for="id_preventiveplanning-{{CURRENT_ACTION}}-address">Adresse</label></th>
-</tr>
-<tr>
- <td colspan='2'>{{wizard.form.address|safe}}</td>
-</tr>
-
-{% if wizard.form.postal_code.errors %}<tr>
- <td colspan="2">{{wizard.form.postal_code.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th colspan='2'><label for="id_preventiveplanning-{{CURRENT_ACTION}}-postal_code">Code postal</label></th>
-</tr>
-<tr>
- <td colspan='2'>{{wizard.form.postal_code|safe}}</td>
-</tr>
-
-</table>
-
-<h4>Surfaces</h4>
-<table>
-
-{% if wizard.form.total_surface.errors %}<tr>
- <td colspan="2">{{wizard.form.total_surface.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th><label for="id_preventiveplanning-{{CURRENT_ACTION}}-total_surface">Surface totale des terrains</label></th>
-</tr>
-<tr>
- <td>{{wizard.form.total_surface|safe}}</td>
-</tr>
-
-{% if wizard.form.total_developed_surface.errors %}<tr>
- <td colspan="2">{{wizard.form.total_developed_surface.errors}}</td>
-</tr>{% endif %}
-<tr>
- <th><label for="id_preventiveplanning-{{CURRENT_ACTION}}-total_developed_surface">Surface totale aménagée</label></th>
-</tr>
-<tr>
- <td>{{wizard.form.total_developed_surface|safe}}</td>
-</tr>
-
-</table>
-
-<input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
-{{ previous_fields|safe }}
- {% block "footer" %}
- <div id="footer">
- {% block "validation_bar" %}
- {% include 'ishtar/wizard/validation_bar.html' %}
- {% endblock %}
- {% include 'ishtar/blocks/footer.html' %}
- </div>
- {% endblock %}
-</div>
-</form>
-{% endblock %}