11 lines
No EOL
265 B
HTML
11 lines
No EOL
265 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">
|
|
{{ .csrfField }}
|
|
{{ template "status_form" .status }}
|
|
</form>
|
|
{{ end }} |