s1llyw0rdz/web/handler/html/edit_status.html

12 lines
297 B
HTML
Raw Normal View History

2021-11-22 13:23:30 +00:00
{{ define "content" }}
2021-11-28 07:40:11 +00:00
<section>
<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-02 20:41:17 +00:00
{{ template "status_form" .status }}
2021-11-28 07:40:11 +00:00
</form>
</section>
2021-11-22 13:23:30 +00:00
{{ end }}