forked from jason/cpolis
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			574 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			574 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "page-content"}}
 | 
						|
<form>
 | 
						|
    <div class="grid grid-cols-4 gap-4">
 | 
						|
        {{range .}}
 | 
						|
        <div>
 | 
						|
            <input required id="{{.ID}}" name="id" type="radio" value="{{.ID}}" />
 | 
						|
            <label for="{{.ID}}">{{.Title}}</label>
 | 
						|
        </div>
 | 
						|
        {{end}}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="btn-area">
 | 
						|
        <input class="action-btn" type="submit" value="Auswählen" hx-post="/review-unpublished-article/"
 | 
						|
            hx-target="#page-content" />
 | 
						|
        <button class="btn" hx-get="/hub/" hx-target="#page-content">Zurück</button>
 | 
						|
    </div>
 | 
						|
</form>
 | 
						|
 | 
						|
{{end}}
 |