s1llyw0rdz/web/handler/html/edit_status.html
2021-12-04 16:22:30 +01:00

10 lines
No EOL
244 B
HTML

{{ 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">
{{ template "status_form" .status }}
</form>
{{ end }}