| <html xmlns:th="https://www.thymeleaf.org"> |
| <head> |
| <title>APP4MC Cloud Manager - Administration</title> |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
| </head> |
| <body> |
| |
| <div> |
| <h2>Configure available APP4MC Cloud services</h2> |
| </div> |
| <div> |
| <form action="#" th:action="@{/admin/save}" th:object="${dto}" method="POST"> |
| <fieldset> |
| <input type="submit" id="submitButton" th:value="Save"> |
| <input type="reset" id="resetButton" name="reset" th:value="Reset"/> |
| <table> |
| <thead> |
| <tr> |
| <th>Service Name</th> |
| <th>Service Base URL</th> |
| <th>Service Description</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr th:each="service, stat : *{services}"> |
| <td><input th:field="*{services[__${stat.index}__].name}" /></td> |
| <td><input th:field="*{services[__${stat.index}__].baseUrl}" /></td> |
| <td><input th:field="*{services[__${stat.index}__].description}" /></td> |
| </tr> |
| </tbody> |
| </table> |
| </fieldset> |
| </form> |
| </div> |
| <div> |
| <a th:href="@{/}">Go back</a> |
| </div> |
| |
| </body> |
| </html> |