summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html')
-rw-r--r--archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html41
1 files changed, 20 insertions, 21 deletions
diff --git a/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html b/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html
index d570b9db2..26b1915da 100644
--- a/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html
+++ b/archaeological_operations/templates/ishtar/blocks/window_tables/archaeologicalsites.html
@@ -1,24 +1,23 @@
{% 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 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>
-</div>
-</div>