2024-03-08 14:50:28 -08:00
|
|
|
<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>
|
2024-03-08 14:50:28 -08:00
|
|
|
{{if eq nil $.appeals}}
|
|
|
|
</table>
|
|
|
|
<i>No appeals</i>
|
|
|
|
{{end}}
|
2022-11-30 10:20:31 -08:00
|
|
|
{{range $_,$appeal := $.appeals}}
|
2023-12-28 23:06:44 -08:00
|
|
|
<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>
|