diff options
author | Georg Pfuetzenreuter | 2022-05-06 11:49:22 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-05-06 11:49:22 +0200 |
commit | beb92675071c69b86b5338297822c834ffd548f6 (patch) | |
tree | d81391468881407374f6c16105c5ca0ae61331c2 /src/main/resources/templates/portal.html | |
parent | 6edbc437a1e993f77eeabd458d82d52c77d8e5fa (diff) | |
download | pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.gz pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.bz2 pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.zip |
Init templates
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 | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/main/resources/templates/portal.html b/src/main/resources/templates/portal.html new file mode 100644 index 0000000..8cd2ad6 --- /dev/null +++ b/src/main/resources/templates/portal.html @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<html xmlns:th="http://www.thymeleaf.org"> +<head th:include="layout :: headerFragment"> +</head> +<body> + <div id="container"> + <h1> + Hello, <span th:text="${username}"></span>. + </h1> + <div th:if="${attribute01 != null}" th:text="${attribute01}"></div> + <h2>Docker Images:</h2> + <table> + <tr th:each="image: ${docker_images}" th:if="${image.repoTags[0] != '<none>:<none>'}"> + <td th:text="${image.repoTags[0]}" /> + <td th:text="${image.created}" /> + </tr> + </table> + <h2>Docker Containers:</h2> + <table> + <tr th:each="container: ${docker_containers}"> + <td th:text="${container.names[0]}" /> + <td th:text="${container.image}" /> + <td th:text="${container.imageId}" /> + <td th:text="${container.status}" /> + <td><input type="hidden" th:value="${container.id}" name="containerID"/><button type="submit" class="removebutton" name="action" value="remove">Remove</button></td> + </tr> + </table> + + <!--h4>We are currently running <span th:text="${docker_containercount}"></span> containers.</h4--> + + <!--table class="table table-striped"> + <thead> + <tr> + <th>ID</th> + <th>Name</th> + <th>Address</th> + <th>Service Rendered</th> + </tr> + </thead> + <tbody> + <tr th:each="customer : ${customers}"> + <td th:text="${customer.id}">Text ...</td> + <td th:text="${customer.name}">Text ...</td> + <td th:text="${customer.address}">Text ...</td> + <td th:text="${customer.serviceRendered}">Text...</td> + </tr> + </tbody> + </table--> + <!--div id="pagefoot" th:include="layout :: footerFragment">Footer</div--> + <p></p> + <a href="/logout">Logout</a> + </div> + <!-- container --> +</body> +</html> |