Files
pcinv/src/main/resources/templates/browse.html
Sebastiaan de Schaetzen 3a70613023
Some checks failed
Build / build (push) Failing after 19s
Close to the same feature set as the Go interface
2025-06-08 07:02:13 +02:00

11 lines
323 B
HTML

<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>