mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
21 lines
442 B
HTML
21 lines
442 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "Diagnostic Results" %}</h2>
|
|
|
|
<h3>{% blocktrans %}App: {{ app_id }}{% endblocktrans %}</h3>
|
|
|
|
{% if results %}
|
|
{% include "diagnostics_results.html" with results=results %}
|
|
{% else %}
|
|
<p>{% trans "This app does not support diagnostics" %}</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|