From f99f3bd3826396e3c3e6180a6516fcd3c232889e Mon Sep 17 00:00:00 2001 From: Frederico Gomes Date: Mon, 9 Mar 2026 11:38:07 +0000 Subject: [PATCH] clients: Fix formatting of package row in table Adjust row so that package entries are evenly distributed Signed-off-by: Frederico Gomes [sunil: Fix indentation] [sunil: Convert tabs to spaces] Signed-off-by: Sunil Mohan Adapa Reviewed-by: Sunil Mohan Adapa --- plinth/templates/clients.html | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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 %}