diff --git a/container/templates/container/container_type_list.html b/container/templates/container/container_type_list.html index acfde6d..fcc7d87 100644 --- a/container/templates/container/container_type_list.html +++ b/container/templates/container/container_type_list.html @@ -1,21 +1,75 @@ {% extends "base.html" %} {% load static %} -{% block title %}Container: {{ container.named_id }}{% endblock %} +{% block title %}Container Type List{% endblock %} {% block content %}
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 | +
No container types are available.
{% endif %} + + + +