summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/oglive.html
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/templates/actions/oglive.html')
-rw-r--r--ogcp/templates/actions/oglive.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/ogcp/templates/actions/oglive.html b/ogcp/templates/actions/oglive.html
index 82bd957..dfffd04 100644
--- a/ogcp/templates/actions/oglive.html
+++ b/ogcp/templates/actions/oglive.html
@@ -22,21 +22,19 @@
<table class="table table-hover">
<thead class="thead-light">
- <tr>
- <th>ogLive</th>
- <th>Clients</th>
- </tr>
+ <tr>
+ <th>ogLive</th>
+ <th>Clients</th>
+ </tr>
</thead>
<tbody class="text-left">
{% for oglive, clients in oglives_set.items() %}
- <tr>
- <th>{{oglive}}</th>
- <td>
- {% for ip in clients %}
- <div class="card d-inline-block" style="padding: 5px;">{{ ip }}</div>
- {% endfor %}
- </td>
- </tr>
+ <tr>
+ <th>{{oglive}}</th>
+ <td>
+ {% for ip in clients %}<div class="card d-inline-block" style="padding: 5px; margin: 3px;">{{ ip }}</div>{% endfor %}
+ </td>
+ </tr>
{% endfor %}
</tbody>
</table>