Files
pcinv/src/main/resources/templates/browse.html

11 lines
332 B
HTML

<body th:replace="~{fragments :: base(title='Browse assets', content=~{::content})}">
<div th:fragment="content">
<h2>View device details</h2>
<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>