1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-05 00:26:23 -07:00
gochan/templates/manage_appeals.html

18 lines
No EOL
459 B
HTML

<table class="mgmt-table">
<tr><th>Action</th><th>Appeal Text</th><th>Banned IP</th></tr>
{{if eq nil $.appeals}}
</table>
<i>No appeals</i>
{{end}}
{{range $_,$appeal := $.appeals}}
<tr>
<td>
<a href="{{webPath "manage/appeals"}}?approve={{$appeal.ID}}">Approve</a> |
<a href="{{webPath "manage/appeals"}}?deny={{$appeal.ID}}">Deny</a>
</td>
<td>{{$appeal.AppealText}}</td>
<td>{{getAppealBanIP $appeal.IPBanID}}</td>
</tr>
<tr></tr>
{{end}}
</table>