cpolis/web/templates/rejected-articles.html

21 lines
612 B
HTML
Raw Normal View History

{{define "page-content"}}
<form>
2024-03-28 08:41:38 +01:00
<div>
{{range .RejectedArticles}}
<div>
{{if index $.MyIDs .ID}}
<input required id="{{.ID}}" name="id" type="radio" value="{{.ID}}" />
<label for="{{.ID}}">{{.Title}}</label>
{{end}}
</div>
{{end}}
</div>
2024-04-01 14:22:59 +02:00
<div class="btn-area">
<input class="action-btn" type="submit" value="Auswählen" hx-post="/review-rejected-article/"
hx-target="#page-content" />
<button class="btn" hx-get="/hub/" hx-target="#page-content">Zurück</button>
</div>
</form>
{{end}}