blob: 26b1915dadfcc41245789093450f02a2ea348923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% load i18n %}
<h4>{{caption}}</h4>
<table class="table table-striped">
<thead>
<tr>
<th>{% trans "Ref." %}</th>
<th>{% trans "Name" %}</th>
<th>{% trans "Periods" %}</th>
<th>{% trans "Remains" %}</th>
</tr>
<tbody>
{% 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 %}
</tbody>
</table>
|