blob: 9fd0222811e88f8b485fc7fd76f0d24c24be5944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% 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' '' '' '' previous next 1 %}
<ul class='form-flex'>
{% field_li "Name" item.name %}
{% field_li "Warehouse type" item.warehouse_type %}
{% field_li "Person in charge" item.person_in_charge %}
</ul>
{% field "Comment" item.comment "<pre>" "</pre>" %}
{% if item.containers.count %}
<h4>{% trans "Containers" %}</h4>
{% dynamic_table_document '' 'containers' 'location' item.pk 'TABLE_COLS' output %}
{% endif %}
{% if item.owned_containers.count %}
<h4>{% trans "Attached containers" %}</h4>
{% dynamic_table_document '' 'containers' 'responsible' item.pk 'TABLE_COLS' output %}
{% endif %}
{% endblock %}
|