blob: fd3c6510ab5c6a85ce1a7b68c767c25afbb85987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "ishtar/sheet.html" %}
{% load i18n window_header window_field window_tables %}
{% block head_title %}{% trans "Container" %}{% endblock %}
{% block content %}
{% window_nav item window_id 'show-container' '' '' '' previous next 1 %}
<ul class='form-flex'>
{% field_li "Reference" item.reference %}
{% field_li "Container type" item.container_type %}
</ul>
{% field "Comment" item.comment "<pre>" "</pre>" %}
{% field "Location" item.precise_location %}
{% if item.finds.count %}
<h4>{% trans "Content" %}</h4>
{% dynamic_table_document finds 'finds' 'container' item.pk 'TABLE_COLS' output 'large' %}
{% endif %}
{% endblock %}
|