diff options
Diffstat (limited to 'archaeological_warehouse/templates/ishtar/sheet_warehouse.html')
-rw-r--r-- | archaeological_warehouse/templates/ishtar/sheet_warehouse.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html index ae032a8a4..eed484d5a 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -62,6 +62,7 @@ {% if item.number_of_finds_by_place %} <h4>{% trans "Finds by location in the warehouse" %}</h4> {% for items in item.number_of_finds_by_place %} +{% if items %} <table class='table table-striped datatables' id="{{window_id}}-find-by-loca-{{forloop.counter}}"> <thead> @@ -79,6 +80,7 @@ {% endfor %} </tbody> </table> +{% endif %} {% endfor %} {% endif %} @@ -91,6 +93,7 @@ {% if item.number_of_containers_by_place %} <h4>{% trans "Containers by location in the warehouse" %}</h4> {% for items in item.number_of_containers_by_place %} +{% if items %} <table class='table table-striped datatables' id="{{window_id}}-container-by-loca-{{forloop.counter}}"> <thead> @@ -108,6 +111,7 @@ {% endfor %} </tbody> </table> +{% endif %} {% endfor %} {% endif %} |