diff --git a/plinth/templates/clients.html b/plinth/templates/clients.html index 7d86d0bcc..3e3d65e07 100644 --- a/plinth/templates/clients.html +++ b/plinth/templates/clients.html @@ -30,13 +30,28 @@
| Web | + {% with web_clients|first as client %} + {% for platform in client.platforms %} {% if platform.type == 'web' %} +{{ client.name }} | ++ + + + | + {% endif %} + {% endfor %} + {% endwith %} +
|---|---|---|
| Web | {{ client.name }} | @@ -44,43 +59,83 @@ |
| Desktop | -{{ client.name }} | -
-
- {% for platform in client.platforms %}
- {% if platform.type == 'download' %}
-
- {% endif %}
- {% endfor %}
-
- |
-
| Desktop | + {% with desktop_clients|first as client %} +{{ client.name }} | +
+
+ {% for platform in client.platforms %}
+ {% if platform.type == 'download' %}
+
+ {% endif %}
+ {% endfor %}
+
+ |
+ {% endwith %}
+
| {{ client.name }} | +
+
+ {% for platform in client.platforms %}
+ {% if platform.type == 'download' %}
+
+ {% endif %}
+ {% endfor %}
+
+ |
+ |
| Mobile | + {% with mobile_clients|first as client %} +{{ client.name }} | +
+
+ {% for platform in client.platforms %}
+ {% if platform.type == 'store' and platform.os == 'android' or platform.os == 'ios' %}
+
+ {% endif %}
+ {% endfor %}
+
+ |
+ {% endwith %}
+
| Mobile | {{ client.name }} |
@@ -98,9 +153,10 @@
|