Working on edit
Some checks failed
Build / build (push) Failing after 8s

This commit is contained in:
2025-06-08 08:57:55 +02:00
parent 3a70613023
commit 72f4a1cd28

View File

@@ -2,11 +2,15 @@
<div th:fragment="content">
There are <span th:text="${assets.size()}"></span> <span th:text="${descriptor.pluralName}"></span> in the database.
<table border="1">
<tr>
<th th:each="p : ${properties}" th:text="${p.displayName}" bgcolor="#d3d3d3"></th>
<tr bgcolor="#d3d3d3">
<th th:each="p : ${properties}" th:text="${p.displayName}"></th>
<th>Actions</th>
</tr>
<tr th:each="a : ${assets}">
<td th:each="p : ${properties}"><a th:href="'/view/'+${a.getQr()}" th:text="${p.renderValue(a)}"></a></td>
<td>
<a href="/edit">Edit</a>
</td>
</tr>
</table>
</div>