diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-19 19:47:04 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-19 19:47:04 +0100 |
commit | dba959d5d244f2e02c8ff22f4a8789c7d3ad3cfa (patch) | |
tree | a16dd9013a8cb8363808bd550f4415fafad71193 /archaeological_operations/templates | |
parent | 37a52a77a7cf2b02c5a811af7a81def1751ea737 (diff) | |
download | Ishtar-dba959d5d244f2e02c8ff22f4a8789c7d3ad3cfa.tar.bz2 Ishtar-dba959d5d244f2e02c8ff22f4a8789c7d3ad3cfa.zip |
Improve find sheet
Diffstat (limited to 'archaeological_operations/templates')
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_operation.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index 565bccbb2..8166d9d68 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -229,7 +229,7 @@ <div class='row'> {% if item.nb_context_records_by_type %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Type" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_context_records_by_type %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> @@ -239,7 +239,7 @@ {% endif %} {% if item.nb_context_records_by_periods %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Period" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_context_records_by_periods %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> @@ -256,7 +256,7 @@ <div class='row'> {% if item.nb_finds_by_material_type %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Material type" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_finds_by_material_type %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> @@ -266,7 +266,7 @@ {% endif %} {% if item.nb_finds_by_types %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Object type" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_finds_by_types %} <tr><td>{{label}}</td><td>{{nb}}</td></tr> @@ -276,7 +276,7 @@ {% endif %} {% if item.nb_finds_by_periods %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Period" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_finds_by_periods %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> @@ -293,7 +293,7 @@ <div class='row'> {% if item.nb_documents_by_types %} <div class="col-12 col-md-6 col-lg-4"> - <table class="table"> + <table class="table table-striped"> <tr><th>{% trans "Type" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_documents_by_types %} <tr><td>{{label}}</td><td>{{nb}}</td></tr> |