s1llyw0rdz/web/handler/html/edit_status.html

11 lines
265 B
HTML
Raw Permalink Normal View History

2021-11-22 13:23:30 +00:00
{{ define "content" }}
2021-12-04 15:22:30 +00:00
<h1>Edit status</h1>
{{ if .form.Error }}
<p>{{ .form.Error }}</p>
{{ end }}
{{ template "flash" .flash }}
<form action="/edit?id={{ .status.Id }}" method="post">
2021-12-22 11:04:24 +00:00
{{ .csrfField }}
2021-12-04 15:22:30 +00:00
{{ template "status_form" .status }}
</form>
2021-11-22 13:23:30 +00:00
{{ end }}