mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
19 lines
496 B
HTML
19 lines
496 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"
|
|
value="{% trans "Run Diagnostics" %}"/>
|
|
{% else %}
|
|
<input type="submit" class="btn btn-default"
|
|
value="{% trans "Run Diagnostics" %}" disabled="disabled"/>
|
|
{% endif %}
|
|
</form>
|