diff options
author | Georg Pfuetzenreuter | 2022-05-08 15:58:33 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-05-08 15:58:33 +0200 |
commit | 33de7a6800ba2447bf040bd25167e677a723bf2f (patch) | |
tree | e08c8db749ab58bf61bf14fd16729c1626a52c80 /src/main/resources/templates/portal.html | |
parent | b48fe2fd1086892b439454ad3843705baf34b58b (diff) | |
download | pubsh-web-33de7a6800ba2447bf040bd25167e677a723bf2f.tar.gz pubsh-web-33de7a6800ba2447bf040bd25167e677a723bf2f.tar.bz2 pubsh-web-33de7a6800ba2447bf040bd25167e677a723bf2f.zip |
Cleanup user frontend
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'src/main/resources/templates/portal.html')
-rw-r--r-- | src/main/resources/templates/portal.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/templates/portal.html b/src/main/resources/templates/portal.html index 33934c3..a9319a4 100644 --- a/src/main/resources/templates/portal.html +++ b/src/main/resources/templates/portal.html @@ -22,7 +22,7 @@ </form> <div th:if="${attribute01 != null}" th:text="${attribute01}"></div> - <h3>Available images:</h3> + <!-- h3>Available images:</h3> <table th:if="${docker_images!=null and !docker_images.empty}"> <tr th:each="image: ${docker_images}" th:if="${image.repoTags[0] != '<none>:<none>'}"> <td> @@ -40,14 +40,14 @@ <td th:text="${image.created}" /> </tr> </table> - <div th:if="${docker_images.empty}"><p>None yet!</p></div> + <div th:if="${docker_images.empty}"><p>None yet!</p></div--> - <h3>Existing containers:</h3> + <h3>Existing shells:</h3> <table th:if="${docker_containers!=null and !docker_containers.empty}"> <tr th:each="container: ${docker_containers}"> <td th:text="${container.names[0]}" /> - <td th:text="${container.image}" /> - <td th:text="${container.id}" /> + <!-- td th:text="${container.image}" / --> + <!-- td th:text="${container.id}" / --> <td th:text="${container.status}" /> <td> <form id="deletion_pseudoform" action="#" th:action="@{'/frontend/shell/delete/{id}'(id=${container.id})}" th:method="delete" th:containerid="${container.id}" th:containerShaSum="${container.imageId}" th:onsubmit="return confirm('Do you really want to delete the container with ID ' + this.getAttribute('containerid') + ' which is attached to the image with checksum ' + this.getAttribute('containerShaSum') + ' ?');"> |