blob: d72291c5b75b5883656299c13357173334674225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% load i18n %}
<table class='simple'>
<caption>{{caption}}</caption>
<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>
|