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

{% if data.container %}

Containers / {{ data.container.name }}

{% else %} {% if data.mode == 'new_task' %}

New task


Step 1: choose software container.


{% else %}

Containers


{% endif %}
{% csrf_token %}
{% endif %}
{% if data.container %} {% include "components/container.html" with container=data.container details=True %} {% else %} {% for container in data.containers %} {% include "components/container.html" with container=container %} {% endfor %} {% endif %}
{% if not data.container %} {% endif %}





{% include "footer.html" %}