diff options
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> |