{% if data.task %}
{% include "components/task.html" with task=data.task details=True %}
{% else %}
{% for task in data.tasks %}
{% include "components/task.html" with task=task %}
{% endfor %}
{% endif %}
{% if not data.task and not data.tasks %}
Nothing here. To create a new task, choose a container from the "containers" menu entry and run it by hitting the play button.