{% load static %} {% include "header.html" %} {% include "navigation.html" with main_path='/main/' %}

{% if data.container %}

Container List > {{ data.container.id }}

{% else %}

Container List

{% endif %}
{% if data.container %} {% include "components/container.html" with container=data.container %} {% else %} {% for container in data.platform_containers %} {% include "components/container.html" with container=container %}
{% endfor %} {% for container in data.user_containers %} {% include "components/container.html" with container=container %}
{% endfor %}
Add new... {% endif %}



{% include "footer.html" %}