mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
35 lines
977 B
HTML
35 lines
977 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
<div class="table-responsive">
|
|
<table class="table diagnostics-results">
|
|
<thead>
|
|
<tr>
|
|
<th class="diagnostic-test">{% trans "Test" %}</th>
|
|
<th class="diagnostics-result">{% trans "Result" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for test, result in results %}
|
|
<tr>
|
|
<td>{{ test }}</td>
|
|
<td class="diagnostics-result">
|
|
{% if result == 'passed' %}
|
|
<span class="badge badge-success">{% trans result %}</span>
|
|
{% elif result == 'failed' %}
|
|
<span class="badge badge-danger">{% trans result %}</span>
|
|
{% elif result == 'error' %}
|
|
<span class="badge badge-warning">{% trans result %}</span>
|
|
{% else %}
|
|
{{ result }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|