minty-cafe/web/handler/html/edit_status.html

11 lines
265 B
HTML
Raw Permalink Normal View History

2026-03-11 19:14:41 +00:00
{{ define "content" }}
<h1>Edit status</h1>
{{ if .form.Error }}
<p>{{ .form.Error }}</p>
{{ end }}
{{ template "flash" .flash }}
<form action="/edit?id={{ .status.Id }}" method="post">
{{ .csrfField }}
{{ template "status_form" .status }}
</form>
{{ end }}