blob: 0be468b592acc2e3bd3d21ebbffd7e655416400f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% load i18n %}
<table class='simple'>
<caption>{{caption}}</caption>
<tr>
<th>{% trans "Ref." %}</th>
<th>{% trans "Type" %}</th>
<th>{% trans "Date" %}</th>
</tr>
{% for act in data %}
<tr>
<td>{{act.full_ref}}</td>
<td class='string'>{{act.act_type}}</td>
<td>{{act.signature_date}}</td>
</tr>
{% empty %}
<tr><td colspan="4" class='no_items'>{% trans "No administrative act associated" %}</td></tr>
{% endfor %}
</table>
|