summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/session.html
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/templates/actions/session.html')
-rw-r--r--ogcp/templates/actions/session.html6
1 files changed, 5 insertions, 1 deletions
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") }}
<b>{{ os_choice.label.text }}</b>
</td>
- <td>{{ ', '.join(os_groups[os_choice.data]) }}</td>
+ <td>
+ {% for ip in os_groups[os_choice.data] %}
+ <div class="card d-inline-block" style="padding: 5px;">{{ ip }}</div>
+ {% endfor %}
+ </td>
</tr>
{% endfor %}
</tbody>