2024-03-10 15:03:46 +01:00
|
|
|
{{define "page-content"}}
|
2024-09-28 12:17:03 +02:00
|
|
|
<h2>Artikel bearbeiten</h2>
|
2024-04-07 18:57:03 +02:00
|
|
|
|
2024-04-01 15:42:51 +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">
|
2024-04-01 15:42:51 +02:00
|
|
|
<h1 class="font-bold text-2xl">{{.Title}}</h1>
|
2024-10-27 07:20:23 +01:00
|
|
|
<p>{{.Summary}}</p>
|
2024-04-01 15:42:51 +02:00
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2024-03-28 08:41:38 +01:00
|
|
|
|
2024-04-03 20:24:54 +02:00
|
|
|
<button class="action-btn" hx-get="/hub" hx-target="#page-content">Zurück</button>
|
2024-04-01 15:42:51 +02:00
|
|
|
</div>
|
2024-03-10 15:03:46 +01:00
|
|
|
{{end}}
|