{% extends "base.html" %} {% load static %} {% block title %}Container Type: {{ container_type.named_id }}{% endblock %} {% block content %}

Container Type: {{ container_type.named_id }}

{{ container_type.description }}
Size:
{{ container_type.width }}mm x {{ container_type.length }}mm x {{ container_type.height }}mm
Inner Size:
{% if container_type.inner_width and container_type.inner_length and container_type.inner_height %} {{ container_type.inner_width }}mm x {{ container_type.inner_length }}mm x {{ container_type.inner_height }}mm {% endif %}
Has Cover:
{% if container_type.has_cover %} yes {% else %} no {% endif %}
Can hold Containers:
{% if container_type.contains_container %} yes {% else %} no {% endif %}
{% endblock content %}