forked from jason/cpolis
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			520 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			520 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "page-content"}}
 | 
						|
<form>
 | 
						|
    <div>
 | 
						|
        {{range .RejectedArticles}}
 | 
						|
        <div>
 | 
						|
            {{if index $.MyIDs .ID}}
 | 
						|
            <input required id="{{.ID}}" name="id" type="radio" value="{{.ID}}" />
 | 
						|
            <label for="{{.ID}}">{{.Title}}</label>
 | 
						|
            {{end}}
 | 
						|
        </div>
 | 
						|
        {{end}}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <input type="submit" value="Auswählen" hx-post="/review-rejected-article/" hx-target="#page-content" />
 | 
						|
</form>
 | 
						|
 | 
						|
<button hx-get="/hub/" hx-target="#page-content">Zurück</button>
 | 
						|
{{end}}
 |