diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-09-03 09:32:37 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-09-03 09:52:26 +0200 |
commit | c1ac88e47c8562699edc9f5304649762366191e0 (patch) | |
tree | 2e7c0f970e603652805c900cbf656d92b86ec55e /ogcp/templates/actions/cache.html | |
parent | 15f5af00e73bac87d329d47de257cad50a591b06 (diff) |
templates: fix ip card list spacing
Remove unwanted witespace caused by tabs and spaces.
Add margin to the ip card style to define an explicit spacing.
Diffstat (limited to 'ogcp/templates/actions/cache.html')
-rw-r--r-- | ogcp/templates/actions/cache.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ogcp/templates/actions/cache.html b/ogcp/templates/actions/cache.html index d64aebe..17d8cb4 100644 --- a/ogcp/templates/actions/cache.html +++ b/ogcp/templates/actions/cache.html @@ -42,9 +42,7 @@ <div>∘︎ Checksum: {{images_data[image.selected.label.text]['checksum']}}</div> </td> <td> - {% for ip in images_data[image.selected.label.text]['clients'] %} - <div class="card d-inline-block" style="padding: 5px;">{{ ip }}</div> - {% endfor %} + {% for ip in images_data[image.selected.label.text]['clients'] %}<div class="card d-inline-block" style="padding: 5px; margin: 3px;">{{ ip }}</div>{% endfor %} </td> </tr> {% endfor %} |