diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-05 12:11:50 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-02-05 12:11:50 +0100 |
commit | 685b34d56d63d3566df9a114dc5db4f7c97f6bd3 (patch) | |
tree | 7522b4f2b0170eb0f0f0d3b6330e309f925fcd22 | |
parent | 7955baf35c46515e6b845d6805b3d8b55f0eb27d (diff) |
templates: remove Server: and Repo: in list images
Although ogcp support for multiple server, the plan is to only support for one
server in this version.
Remove Server: context information and Repo: in list images
-rw-r--r-- | ogcp/templates/actions/list_images.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ogcp/templates/actions/list_images.html b/ogcp/templates/actions/list_images.html index 694036f..f126603 100644 --- a/ogcp/templates/actions/list_images.html +++ b/ogcp/templates/actions/list_images.html @@ -7,9 +7,8 @@ <h1 class="m-5">{{_('List images')}}</h1> {% 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> + <h4 class="mx-5">{{repo}}</h4> <table class="table table-hover mx-5"> <thead class="thead-light"> <tr> |