fisch/views/admin/overview.html
2025-03-18 21:19:18 +01:00

38 lines
No EOL
995 B
HTML
Executable file

{{template "partials/base-top" .}}
{{ $Table := .Table }}
<table>
<tr>
<th>
<a class="table-header-btn" href="/admin/{{ $Table }}/add">Hinzufügen</a>
</th>
</tr>
<tr>
{{ range .Columns }}
<th>{{ . }}</th>
{{ end }}
<th>Aktionen</th>
</tr>
{{ range .Rows }}
<tr>
{{ range .Columns }}
<td>{{ . }}</td>
{{ end }}
<td>
<div class="action-container">
<form action="/admin/{{ $Table }}/edit">
<input type="hidden" name="id" value="{{ .Id }}">
<button type="submit"></button>
</form>
<form action="/admin/{{ $Table }}/delete">
<input type="hidden" name="id" value="{{ .Id }}">
<button type="submit"></button>
</form>
</div>
</td>
</tr>
{{ end }}
</table>
{{template "partials/base-bottom" .}}