mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
16 lines
313 B
HTML
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 %}
|