Got most of the create menu working
Some checks failed
Build / build (push) Failing after 15s

This commit is contained in:
2025-06-07 17:32:55 +02:00
parent 07765b8367
commit e703da995e
17 changed files with 286 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
<body th:replace="fragments :: base(title='Select type to create', content=~{::content})">
<div th:fragment="content">
Create a new device
<ul>
<li th:each="d : ${descriptors.getAssets()}" th:if="${d.visible}"><a th:href="'/create/'+${d.getType()}" th:text="${d.displayName}"></a></li>
</ul>
</div>
</body>