summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html
blob: d570b9db248746dd1b2122a53b6e59f502c07e90 (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 "Name" %}</th>
    <th>{% trans "Periods" %}</th>
    <th>{% trans "Remains" %}</th>
  </tr>
  {% for archaeosite in data %}
  <tr>
    <td class='string'>{{archaeosite.reference}}</td>
    <td class='string'>{{archaeosite.name}}</td>
    <td class='string'>{% for period in archaeosite.periods.all %}{{period}}{% include "blocks/comma_list.html" %}{% endfor %}</td>
    <td class='string'>{% for remain in archaeosite.remains.all %}{{remain}}{% include "blocks/comma_list.html" %}{% endfor %}</td>
  </tr>
  {% empty %}
  <tr><td colspan="4" class='no_items'>{% trans "No archaeological site associated" %}</td></tr>
  {% endfor %}
</table>
</div>
</div>