diff options
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 %} |