blob: 207116c21cce61f2e9a342d35fce3da26f51fff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{% load i18n %}<table class='organization'>
<tr>
<th><label>{{form.name.label}}</label></th>
<td>{{form.name}}</td>
</tr>
</table>
{% for hidden in form.hidden_fields %}{{hidden}}{% endfor %}
<table class='organization-address'>
<tr>
<th><label>{{form.organization_type.label}}</label></th>
<td>{{form.organization_type}}</td>
</tr>
<tr>
<th><label>{{form.address.label}}</label></th>
<td>{{form.address}}</td>
</tr>
<tr>
<th><label>{{form.address_complement.label}}</label></th>
<td>{{form.address_complement}}</td>
</tr>
<tr>
<th><label>{{form.postal_code.label}}</label></th>
<td>{{form.postal_code}}</td>
</tr>
<tr>
<th><label>{{form.town.label}}</label></th>
<td>{{form.town}}</td>
</tr>
</table>
|