{% extends "base.html" %} {% block title %}Airut Dashboard{% endblock %} {% block body %}
Server
{% include "components/version_info.html" %}
{% include "components/boot_state.html" %}
{% include "components/repos_section.html" %}
Tasks
Pending ({{ pending_count }})
{% if pending_tasks %} {% for task in pending_tasks %} {% with status_class='pending' %} {% include "components/task_card.html" %} {% endwith %} {% endfor %} {% else %}
No conversations
{% endif %}
Executing ({{ executing_count }})
{% if executing_tasks %} {% for task in executing_tasks %} {% with status_class='executing' %} {% include "components/task_card.html" %} {% endwith %} {% endfor %} {% else %}
No conversations
{% endif %}
Done ({{ completed_count }})
{% if completed_tasks %} {% for task in completed_tasks %} {% with status_class='completed' %} {% include "components/task_card.html" %} {% endwith %} {% endfor %} {% else %}
No conversations
{% endif %}
Connecting...
{% endblock %} {% block scripts %} {% endblock %}