FreedomBox/modules/installed/system/templates/diagnostics_test.html
2014-05-08 10:13:38 +05:30

16 lines
313 B
HTML

{% extends 'login_nav.html' %}
{% block main_block %}
{% if diagnostics_error %}
<p>The diagnostic test encountered an error:<p>
<pre>{{ diagnostics_error }}</pre>
{% endif %}
{% if diagnostics_output %}
<p>Output of diagnostic test:</p>
<pre>{{ diagnostics_output }}</pre>
{% endif %}
{% endblock %}