diff --git a/plinth/templates/clients.html b/plinth/templates/clients.html
index b4466d70f..0a33b55ad 100644
--- a/plinth/templates/clients.html
+++ b/plinth/templates/clients.html
@@ -119,15 +119,17 @@
{% for platform in client.platforms %}
{% if platform.type == 'package' %}
- {% if platform.format == 'deb' %}
- {% trans "Debian:" %} {{ platform.name }}
- {% endif %}
- {% if platform.format == 'brew' %}
- {% trans "Homebrew:" %} {{ platform.name }}
- {% endif %}
- {% if platform.format == 'rpm' %}
- {% trans "RPM:" %} {{ platform.name }}
- {% endif %}
+
+ {% if platform.format == 'deb' %}
+ {% trans "Debian:" %} {{ platform.name }}
+ {% endif %}
+ {% if platform.format == 'brew' %}
+ {% trans "Homebrew:" %} {{ platform.name }}
+ {% endif %}
+ {% if platform.format == 'rpm' %}
+ {% trans "RPM:" %} {{ platform.name }}
+ {% endif %}
+
{% endif %}
{% endfor %}
|