blob: 29bc2397ce13c8181c8d4017f0feae0c75e57782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "ishtar/wizard/wizard_person_orga.html" %}
{% 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>
</tr>
{% endblock %}
{% block natural %}
<tr class='required'>
<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 %}
|