blob: 4c41ed89e60880679733bfee53092878468ae6bd (
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
|
{% load i18n %}
<h4>{{caption}}</h4>
<div class='clean-table'>
<div class='clean-table-wrap'>
<table>
<tr>
<th>{% trans "Ref." %}</th>
<th>{% trans "Type" %}</th>
<th>{% trans "Date" %}</th>
<th>{% trans "Object" %}</th>
</tr>
{% for act in data %}
<tr>
<td>{{act.full_ref}}</td>
<td class='string'>{{act.act_type}}</td>
<td>{{act.signature_date}}</td>
<td>{{act.act_object}}</td>
</tr>
{% empty %}
<tr><td colspan="4" class='no_items'>{% trans "No administrative act associated" %}</td></tr>
{% endfor %}
</table>
</div>
</div>
|