2024-02-24 15:31:33 +01:00
|
|
|
{{define "page-content"}}
|
2024-04-01 14:22:59 +02:00
|
|
|
<div class="flex flex-col gap-4">
|
2024-04-02 21:35:34 +02:00
|
|
|
<button class="btn" hx-get="/logout/" hx-target="#page-content">Abmelden</button>
|
|
|
|
|
2024-04-01 14:22:59 +02:00
|
|
|
<div class="mb-3">
|
|
|
|
<h2>Autor</h2>
|
|
|
|
<div class="grid grid-cols-2 gap-x-4 gap-y-2">
|
|
|
|
<button class="btn" hx-get="/write-article/" hx-target="#page-content">Artikel schreiben</button>
|
|
|
|
<button class="btn" hx-get="/rejected-articles/" hx-target="#page-content">Abgelehnte Artikel</button>
|
|
|
|
<button class="btn" hx-get="/rss/" hx-target="#page-content">RSS Feed</button>
|
|
|
|
<button class="btn" hx-get="/edit-user/" hx-target="#page-content">Benutzer bearbeiten</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-02 21:35:34 +02:00
|
|
|
|
2024-04-01 14:22:59 +02:00
|
|
|
{{if lt . 3}}
|
|
|
|
<div class="mb-3">
|
|
|
|
<h2>Redakteur</h2>
|
|
|
|
<div class="grid grid-cols-2 gap-4">
|
|
|
|
<button class="btn" hx-get="/unpublished-articles/" hx-target="#page-content">
|
|
|
|
Unveröffentlichte Artikel
|
|
|
|
</button>
|
|
|
|
<button class="btn" hx-get="/create-tag/" hx-target="#page-content">Neuer Tag</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-04-02 21:35:34 +02:00
|
|
|
|
2024-04-01 14:22:59 +02:00
|
|
|
{{if lt . 2}}
|
|
|
|
<div class="mb-3">
|
|
|
|
<h2>Herausgeber</h2>
|
|
|
|
<div class="grid grid-cols-2 gap-4">
|
|
|
|
<button class="btn" hx-get="/this-issue/" hx-target="#page-content">Diese Ausgabe</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-04-02 21:35:34 +02:00
|
|
|
|
2024-04-01 14:22:59 +02:00
|
|
|
{{if eq . 0}}
|
|
|
|
<div class="mb-3">
|
|
|
|
<h2>Administrator</h2>
|
|
|
|
<div class="grid grid-cols-2 gap-4">
|
|
|
|
<button class="btn" hx-get="/create-user/" hx-target="#page-content">Benutzer hinzufügen</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-03-28 08:41:38 +01:00
|
|
|
</div>
|
2024-03-03 09:16:49 +01:00
|
|
|
{{end}}
|