diff --git a/plinth/modules/diagnostics/templates/diagnostics_results.html b/plinth/modules/diagnostics/templates/diagnostics_results.html
index 74753facf..ec325a2ae 100644
--- a/plinth/modules/diagnostics/templates/diagnostics_results.html
+++ b/plinth/modules/diagnostics/templates/diagnostics_results.html
@@ -19,33 +19,29 @@
{% load i18n %}
-
-
-
-
-
- | {% trans "Test" %} |
- {% trans "Result" %} |
-
-
-
- {% for test, result in results %}
-
- | {{ test }} |
-
- {% if result == 'passed' %}
- {{ result }}
- {% elif result == 'failed' %}
- {{ result }}
- {% elif result == 'error' %}
- {{ result }}
- {% else %}
- {{ result }}
- {% endif %}
- |
-
- {% endfor %}
-
-
-
-
+
+
+
+ | {% trans "Test" %} |
+ {% trans "Result" %} |
+
+
+
+ {% for test, result in results %}
+
+ | {{ test }} |
+
+ {% if result == 'passed' %}
+ {{ result }}
+ {% elif result == 'failed' %}
+ {{ result }}
+ {% elif result == 'error' %}
+ {{ result }}
+ {% else %}
+ {{ result }}
+ {% endif %}
+ |
+
+ {% endfor %}
+
+