From c3d8fd9f56ae65c558babe127825883395c67417 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Mon, 2 Jun 2025 10:31:07 +0200 Subject: [PATCH] Display fix: place services in rows --- .../frontend/organizations/services.html | 58 ++++++++++--------- 1 file changed, 31 insertions(+), 27 deletions(-) diff --git a/src/servala/frontend/templates/frontend/organizations/services.html b/src/servala/frontend/templates/frontend/organizations/services.html index 3286952..b3707e4 100644 --- a/src/servala/frontend/templates/frontend/organizations/services.html +++ b/src/servala/frontend/templates/frontend/organizations/services.html @@ -16,36 +16,40 @@ - {% for service in services %} -
-
- {% if service.logo %} - {{ service.name }} - {% endif %} -
-

{{ service.name }}

- {{ service.category }} +
+ {% for service in services %} +
+
+
+ {% if service.logo %} + {{ service.name }} + {% endif %} +
+

{{ service.name }}

+ {{ service.category }} +
+
+
+ {% if service.description %}

{{ service.description }}

{% endif %} +
+
-
- {% if service.description %}

{{ service.description }}

{% endif %} + {% empty %} +
+
+

{% translate "No services found." %}

+
- -
- {% empty %} -
-
-

{% translate "No services found." %}

-
-
- {% endfor %} + {% endfor %} +
{% endblock content %}