mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
Tests: - Click on diagnostics menu item in any app. Notice that running status does not show up. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
19 lines
514 B
HTML
19 lines
514 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
<form class="form form-diagnostics-button" method="post"
|
|
action="{% url 'diagnostics:app' app_id %}">
|
|
{% csrf_token %}
|
|
|
|
{% if enabled %}
|
|
<input type="submit" class="btn btn-default no-running-status"
|
|
value="{% trans "Run Diagnostics" %}"/>
|
|
{% else %}
|
|
<input type="submit" class="btn btn-default"
|
|
value="{% trans "Run Diagnostics" %}" disabled="disabled"/>
|
|
{% endif %}
|
|
</form>
|