{% extends "ishtar/sheet.html" %} {% load i18n window_header window_field window_tables %} {% block head_title %}{% trans "Warehouse" %}{% endblock %} {% block content %} {% window_nav item window_id 'show-warehouse' 'warehouse_modify' '' '' previous next 1 %}

{{ item.name|default:"" }}

{{ item.warehouse_type|default:"" }}

{% include "ishtar/blocks/sheet_external_id.html" %} {% include "ishtar/blocks/sheet_address_section.html" %} {% field "Comment" item.comment "
" "
" %} {% if item.containers.count %}

{% trans "Containers" %}

{% dynamic_table_document '' 'containers' 'location' item.pk 'TABLE_COLS' output %} {% endif %} {% if item.owned_containers.count %}

{% trans "Attached containers" %}

{% dynamic_table_document '' 'containers' 'responsible' item.pk 'TABLE_COLS' output %} {% endif %}

{% trans "Statistics" %}

{% trans "These numbers are updated hourly" %}

{% trans "Finds" %}

{% if item.number_of_finds_by_place %}

{% trans "Finds by location in the warehouse" %}

{% endif %}

{% trans "Containers" %}

{% if item.number_of_containers_by_place %}

{% trans "Containers by location in the warehouse" %}

{% endif %} {% endblock %}