cpolis/web/templates/rejected-articles.html

17 lines
468 B
HTML
Raw Permalink Normal View History

{{define "page-content"}}
2024-09-28 12:17:03 +02:00
<h2>Artikel bearbeiten</h2>
2024-04-07 18:57:03 +02:00
<div class="flex flex-col gap-4">
{{range .RejectedArticles}}
{{if index $.MyIDs .ID}}
2024-08-30 15:58:09 +02:00
<button class="btn" hx-get="/article/review-rejected/{{.ID}}" hx-target="#page-content">
<h1 class="font-bold text-2xl">{{.Title}}</h1>
2024-10-27 07:20:23 +01:00
<p>{{.Summary}}</p>
</button>
{{end}}
{{end}}
2024-03-28 08:41:38 +01:00
<button class="action-btn" hx-get="/hub" hx-target="#page-content">Zurück</button>
</div>
{{end}}