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

7 lines
No EOL
378 B
HTML

<table border="1">
<tr><th>Action</th><th>Appeal Text</th><th>Banned IP</th></tr>
{{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>