blob: e43e336c4467b729ff3170aa61ada6e9e437d516 (
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_general_contractor.label_tag }}</th>
<td> {{ wizard.form.raw_general_contractor.errors }}{{wizard.form.raw_general_contractor|safe}}</td>
</tr>
{% endblock %}
{% block natural %}
<tr class='required'>
<th>{{ wizard.form.general_contractor.label_tag }}</th>
<td> {{ wizard.form.general_contractor.errors }}{{wizard.form.general_contractor|safe}}</td>
</tr>
{% endblock %}
|