diff options
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/actions/list_images.html | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/ogcp/templates/actions/list_images.html b/ogcp/templates/actions/list_images.html index e2f5633..694036f 100644 --- a/ogcp/templates/actions/list_images.html +++ b/ogcp/templates/actions/list_images.html @@ -6,15 +6,11 @@ {% block content %} <h1 class="m-5">{{_('List images')}}</h1> -{% for r in responses %} - {% set server = r['server']['name']%} - {% set repos = r['repos'] %} - {% for repo in repos.values() %} - {% set repo_name = repo['name'] %} - {% set images = repo['images'] %} - {% if images %} - {{ repo_name }} ({{ server }}) - <table class="table table-hover"> +{% for server in servers %} + <h3 class="mx-5">Server: {{server['name']}}</h3> + {% for repo, images in server['repos'] %} + <h4 class="mx-5">Repo: {{repo}}</h4> + <table class="table table-hover mx-5"> <thead class="thead-light"> <tr> <th>Name</th> @@ -27,14 +23,13 @@ {% for img in images %} <tr> <th>{{img['name']}}</th> - <td>{{img['size'] / 1024 ** 2}}</td> - <td>{{img['datasize'] / 1024 ** 2}}</td> + <td>{{(img['size'] / 1024 ** 2) |round(2, 'floor')}}</td> + <td>{{(img['datasize'] / 1024 ** 2) |round(2, 'floor')}}</td> <td>{{img['modified']}}</td> </tr> {% endfor %} </tbody> </table> - {% endif %} {% endfor %} {% endfor %} |