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

{% if data.computing %}

Computing List > {{ data.computing.id }}

{% else %}

Computing List

{% endif %}
{% if data.computing %} {% include "components/computing.html" with computing=data.computing %} {% else %} {% for computing in data.computings %} {% include "components/computing.html" with computing=computing %}
{% endfor %} {% endif %}



{% include "footer.html" %}