1
0
mirror of https://github.com/pcvolkmer/grz-metadata-processor.git synced 2025-07-04 13:22:54 +00:00

chore: new layout for error page

This commit is contained in:
2025-06-09 19:00:21 +02:00
parent f564e0d1ee
commit 66714df21a
9 changed files with 41 additions and 14 deletions

View File

@ -6,13 +6,13 @@
</head>
<body>
<div>
<h1>
<h1 class="head">
Alle Fälle
</h1>
<form class="case">
<ul class="case-list">
<li th:each="case : ${cases}">
<a th:href="@{/cases/{caseId}(caseId=${case.id})}">Fallnummer: [[ ${case.localCaseId} ]]</a>
<a th:href="@{/cases/{caseId}(caseId=${case.id})}">Fall <code>[[ ${case.localCaseId} ]]</code></a>
<button class="delete left" th:hx-delete="@{/cases/{caseId}(caseId=${case.id})}" hx-target="#cases">Eintrag löschen</button>
</li>
</ul>