diff --git a/ogcp/templates/actions/cache.html b/ogcp/templates/actions/cache.html
index 336fd7f..f9aaf68 100644
--- a/ogcp/templates/actions/cache.html
+++ b/ogcp/templates/actions/cache.html
@@ -40,7 +40,11 @@
{{ image.clients() }}
{{ image.image_name.data }} ({{ (images_data[image.selected.label.text]['size'] | int / 2**20)|round(3) }} MiB)
-
{{ ', '.join(images_data[image.selected.label.text]['clients']) }} |
+
+ {% for ip in images_data[image.selected.label.text]['clients'] %}
+ {{ ip }}
+ {% endfor %}
+ |
{% endfor %}
diff --git a/ogcp/templates/actions/session.html b/ogcp/templates/actions/session.html
index 3a39a10..151c6aa 100644
--- a/ogcp/templates/actions/session.html
+++ b/ogcp/templates/actions/session.html
@@ -39,7 +39,11 @@ The selected clients have different installed OS:
{{ os_choice(class_="form-control") }}
{{ os_choice.label.text }}
- {{ ', '.join(os_groups[os_choice.data]) }} |
+
+ {% for ip in os_groups[os_choice.data] %}
+ {{ ip }}
+ {% endfor %}
+ |
{% endfor %}