25 lines
		
	
	
		
			678 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			678 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "page-content"}}
 | 
						|
<h2>Alle Benutzer</h2>
 | 
						|
 | 
						|
<div class="flex flex-col gap-4">
 | 
						|
    {{range .Users}}
 | 
						|
    <button class="btn" hx-get="/user/{{$.Action}}/{{.ID}}" hx-target="#page-content">
 | 
						|
        <h1 class="font-bold text-2xl">
 | 
						|
            {{.UserName}}
 | 
						|
            ({{if eq .Role 0}}
 | 
						|
            Administrator
 | 
						|
            {{else if eq .Role 1}}
 | 
						|
            Herausgeber
 | 
						|
            {{else if eq .Role 2}}
 | 
						|
            Redakteur
 | 
						|
            {{else}}
 | 
						|
            Autor
 | 
						|
            {{end}})
 | 
						|
        </h1>
 | 
						|
        <p>{{.FirstName}} {{.LastName}}</p>
 | 
						|
    </button>
 | 
						|
    {{end}}
 | 
						|
    <button class="action-btn" hx-get="/hub" hx-target="#page-content">Zurück</button>
 | 
						|
</div>
 | 
						|
{{end}}
 |