mirror of
https://github.com/pcvolkmer/grz-metadata-processor.git
synced 2025-07-02 04:22:54 +00:00
24 lines
817 B
HTML
24 lines
817 B
HTML
<!DOCTYPE html>
|
|
<html lang="de" xmlns="http://www.w3.org/1999/html" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>GRZ-Metadaten :: Alle Fälle</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<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})}">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>
|
|
<button class="new" th:hx-post="@{/cases}">Neuen Fall anlegen</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|