Aufgaben-Templates löschbar machen

This commit is contained in:
Kai
2026-02-17 17:33:38 +01:00
parent aa0475c151
commit 4d9b3a2997
3 changed files with 44 additions and 0 deletions

View File

@@ -69,6 +69,28 @@
</label>
<button type="submit">Template speichern</button>
</form>
<div class="table-wrap mt">
<table>
<thead><tr><th>Template</th><th>Aktion</th></tr></thead>
<tbody>
{{if .TaskTemplates}}
{{range .TaskTemplates}}
<tr>
<td>{{.Title}}</td>
<td>
<form method="post" action="/task-templates/delete">
<input type="hidden" name="id" value="{{.ID}}">
<button type="submit" class="btn-small danger" onclick="return confirm('Template wirklich löschen?')">Löschen</button>
</form>
</td>
</tr>
{{end}}
{{else}}
<tr><td colspan="2">Keine Templates vorhanden.</td></tr>
{{end}}
</tbody>
</table>
</div>
</section>
<section class="card">