diff --git a/plinth/templates/clients.html b/plinth/templates/clients.html index 3e0b9f90a..50cb16dee 100644 --- a/plinth/templates/clients.html +++ b/plinth/templates/clients.html @@ -30,8 +30,8 @@
-| {{ client.name }} |
-
-
+ {% 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 %} + {% endif %} + {% endfor %} |
{% endfor %}