summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html
blob: 9feb51e72cb3013cf554b6e2ab4e0c6611a4decf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% load i18n %}
<table>
  <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>