cpolis/web/templates/unpublished-articles.html

11 lines
374 B
HTML
Raw Normal View History

2024-03-01 11:30:31 +01:00
{{define "page-content"}}
<form>
{{range .}}
2024-03-07 20:11:28 +01:00
<input required id="{{.ID}}" name="id" type="radio" value="{{.ID}}" />
<label for="{{.ID}}">{{.Title}}</label>
2024-03-01 11:30:31 +01:00
{{end}}
<input type="submit" value="Auswählen" hx-post="/review-unpublished-article/" hx-target="#page-content" />
2024-03-01 11:30:31 +01:00
</form>
<button hx-get="/hub/" hx-target="#page-content">Zurück</button>
{{end}}