diff options
Diffstat (limited to 'ogcp/templates/actions/cache.html')
-rw-r--r-- | ogcp/templates/actions/cache.html | 6 |
1 files changed, 5 insertions, 1 deletions
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() }} <b>{{ image.image_name.data }} ({{ (images_data[image.selected.label.text]['size'] | int / 2**20)|round(3) }} MiB)</b> </td> - <td>{{ ', '.join(images_data[image.selected.label.text]['clients']) }}</td> + <td> + {% for ip in images_data[image.selected.label.text]['clients'] %} + <div class="card d-inline-block" style="padding: 5px;">{{ ip }}</div> + {% endfor %} + </td> </tr> {% endfor %} </tbody> |