cpolis/web/templates/editor.html

18 lines
552 B
HTML
Raw Normal View History

{{define "page-content"}}
2024-02-24 09:54:25 +01:00
<h2>Editor</h2>
<form>
2024-02-24 09:54:25 +01:00
<input name="editor-title" placeholder="Titel" type="text" />
<textarea name="editor-desc" placeholder="Beschreibung"></textarea>
<textarea name="editor-text" placeholder="Artikel"></textarea>
2024-03-03 13:56:49 +01:00
{{range .}}
<input id="{{.Name}}" name="tags" type="checkbox" value="{{.ID}}" />
<label for="{{.Name}}">{{.Name}}</label>
2024-03-03 13:56:49 +01:00
{{end}}
<input type="submit" value="Senden" hx-post="/finish-article/" hx-target="#page-content" />
</form>
{{end}}
2024-02-18 10:48:37 +01:00
{{define "html-result"}}
{{.}}
{{end}}