diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-24 23:13:11 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-24 23:13:11 +0100 |
| commit | 4c9fdd6fa72cc77214292b5c435074d8bc4005e6 (patch) | |
| tree | c984d00f04cdeb2303d7d36ea813c4e6b79db9db /archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html | |
| parent | a1c527975f9be70e5d3807f072a05a52c35b7c8e (diff) | |
| download | Ishtar-4c9fdd6fa72cc77214292b5c435074d8bc4005e6.tar.bz2 Ishtar-4c9fdd6fa72cc77214292b5c435074d8bc4005e6.zip | |
UI: work on sheets
Diffstat (limited to 'archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html')
| -rw-r--r-- | archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html b/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html index 4c41ed89e..6b651092b 100644 --- a/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html +++ b/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html @@ -1,14 +1,15 @@ {% load i18n %} <h4>{{caption}}</h4> -<div class='clean-table'> -<div class='clean-table-wrap'> -<table> +<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> @@ -19,6 +20,5 @@ {% empty %} <tr><td colspan="4" class='no_items'>{% trans "No administrative act associated" %}</td></tr> {% endfor %} + </tbody> </table> -</div> -</div> |
