{% extends "base.html" %} {% load static %} {% block title %}Container Type List{% endblock %} {% block content %}
{% if container_type_list %} {% for ctype in container_type_list %} {% endfor %}
Container Type Description Size (mm) Inner Size (mm) Cover holds Container Changed Action
{{ ctype.named_id }}
{{ ctype.description }}
{% if ctype.width %}{{ ctype.width }}x{{ ctype.length }}x{{ ctype.height }}{% endif %}
{% if ctype.inner_width %}{{ ctype.inner_width }}x{{ ctype.inner_length }}x{{ ctype.inner_height }}{% endif %}
{% if ctype.has_cover %}yes{%else %}--{% endif %}
{% if ctype.contains_container %}yes{%else %}--{% endif %}
{{ ctype.changed_ts | date:'H:i:s d.m.Y' }}
Delete
{% else %}

No container types are available.

{% endif %}
+ Container Type + Container + Asset
Import Container Types
{% endblock content %}