summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html
blob: 25c1118f9d4b81fdda9f67f81e898d6e84fccdeb (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 %}
<h3>{{caption}}</h3>
<table class="table table-striped">
  <thead>
  <tr>
    <th>{% trans "Ref." %}</th>
    <th>{% trans "Type" %}</th>
    <th>{% trans "Date" %}</th>
    <th>{% trans "Object" %}</th>
  </tr>
  </thead>
  <tbody>
  {% 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 %}
  </tbody>
</table>