diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-07-21 17:47:46 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-07-21 17:47:46 +0200 |
commit | c55c4fad9972df04273e9a98f9dd4918998e4e70 (patch) | |
tree | 28e882ed130ed7d681f958879522cbe5ae24d814 /archaeological_files_pdl/templates | |
parent | c1e6542f8a339dcb60434154f4322f2dca329918 (diff) | |
download | Ishtar-c55c4fad9972df04273e9a98f9dd4918998e4e70.tar.bz2 Ishtar-c55c4fad9972df04273e9a98f9dd4918998e4e70.zip |
Manage lan planner organizations (refs #2671)
Diffstat (limited to 'archaeological_files_pdl/templates')
3 files changed, 13 insertions, 4 deletions
diff --git a/archaeological_files_pdl/templates/ishtar/wizard/wizard_generalcontractor.html b/archaeological_files_pdl/templates/ishtar/wizard/wizard_generalcontractor.html index e43e336c4..4fca7aa5e 100644 --- a/archaeological_files_pdl/templates/ishtar/wizard/wizard_generalcontractor.html +++ b/archaeological_files_pdl/templates/ishtar/wizard/wizard_generalcontractor.html @@ -2,8 +2,8 @@ {% block corporation %} <tr class='required'> - <th>{{ wizard.form.raw_general_contractor.label_tag }}</th> - <td> {{ wizard.form.raw_general_contractor.errors }}{{wizard.form.raw_general_contractor|safe}}</td> + <th>{{ wizard.form.corporation_general_contractor.label_tag }}</th> + <td> {{ wizard.form.corporation_general_contractor.errors }}{{wizard.form.corporation_general_contractor|safe}}</td> </tr> {% endblock %} diff --git a/archaeological_files_pdl/templates/ishtar/wizard/wizard_person_orga.html b/archaeological_files_pdl/templates/ishtar/wizard/wizard_person_orga.html index 91dd7e042..d69e1e0d3 100644 --- a/archaeological_files_pdl/templates/ishtar/wizard/wizard_person_orga.html +++ b/archaeological_files_pdl/templates/ishtar/wizard/wizard_person_orga.html @@ -52,8 +52,10 @@ $(function() { </table> </div> +<div> {% block otherfields %} {% endblock %} +</div> <input type="hidden" name="{{ step_field }}" value="{{ step0 }}" /> {{ previous_fields|safe }} diff --git a/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html b/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html index 29bc2397c..6fd9eef71 100644 --- a/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html +++ b/archaeological_files_pdl/templates/ishtar/wizard/wizard_planningservice.html @@ -2,8 +2,8 @@ {% block corporation %} <tr class='required'> - <th>{{ wizard.form.raw_town_planning_service.label_tag }}</th> - <td> {{ wizard.form.raw_town_planning_service.errors }}{{wizard.form.raw_town_planning_service|safe}}</td> + <th>{{ wizard.form.planning_service.label_tag }}</th> + <td> {{ wizard.form.planning_service.errors }}{{wizard.form.planning_service|safe}}</td> </tr> {% endblock %} @@ -13,3 +13,10 @@ <td> {{ wizard.form.responsible_town_planning_service.errors }}{{wizard.form.responsible_town_planning_service|safe}}</td> </tr> {% endblock %} + +{% block otherfields %} + <tr class='required'> + <th>{{ wizard.form.reference_number.label_tag }}</th> + <td> {{ wizard.form.reference_number.errors }}{{wizard.form.reference_number|safe}}</td> + </tr> +{% endblock %} |