Close to the same feature set as the Go interface
Some checks failed
Build / build (push) Failing after 19s

This commit is contained in:
2025-06-08 07:02:13 +02:00
parent d4718d15c3
commit 3a70613023
12 changed files with 87 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
<body th:replace="~{fragments :: base(title='Browse assets', content=~{::content})}">
<div th:fragment="content">
View device details
<ul>
<li th:each="d : ${descriptors.getAssets()}" th:if="${d.visible}">
<a th:href="'/browse/'+${d.getType()}" th:text="${d.pluralName}"></a>
</li>
</ul>
</div>
</body>