{% extends 'app.html' %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% load static %} {% block configuration %} {% if not is_running %}
{% csrf_token %}
{% else %}

{% trans "Diagnostics test is currently running" %}

{{ results.progress_percentage }}%
{% endif %} {% if results %}

{% trans "Results" %}

{% if results.error %}
× {{ results.error }}
{% else %} {% for app_id, app_results in results.results.items %}

{% blocktrans %}App: {{ app_id }}{% endblocktrans %}

{% if app_results %} {% include "diagnostics_results.html" with results=app_results %} {% else %}

{% endif %} {% endfor %} {% endif %} {% endif %} {% endblock %}