1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-20 01:06:24 -07:00
gochan/templates/manage_appeals.html

18 lines
459 B
HTML
Raw Normal View History

<table class="mgmt-table">
2022-11-30 10:20:31 -08:00
<tr><th>Action</th><th>Appeal Text</th><th>Banned IP</th></tr>
{{if eq nil $.appeals}}
</table>
<i>No appeals</i>
{{end}}
2022-11-30 10:20:31 -08:00
{{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>
2022-11-30 10:20:31 -08:00
<tr></tr>
{{end}}
</table>