Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/admin/panelindex.html

93 lignes
3,3 Kio
HTML
Brut Vue normale Historique

{{define "title"}}Moderation Overview{{end}}
{{define "content"}}
2017-05-10 16:43:50 +02:00
<h3 id="torrents">Last Torrents</h3>
2017-05-10 18:47:37 +02:00
<table class="table">
2017-05-11 00:51:22 +02:00
<tr>
<th class="col-xs-10">Torrent Name</th>
<th class="col-xs-1">Uploader</th>
<th class="col-xs-1">Action</th>
</tr>
{{range .Torrents}}
<tr>
<td><a href="{{ genViewTorrentRoute .ID }}">{{ .Name }}</a> (<a href="{{ genRoute "mod_tedit" }}?id={{.ID}}">Edit</a>)</td>
<td><a href="{{ genRoute "mod_tlist" }}?userID={{.UploaderID}}">{{ .UploaderID }}</a></td>
<td><a href="{{ genRoute "mod_tdelete" }}?id={{ .ID }}" class="btn btn-danger btn-lg" onclick="if (!confirm('Are you sure?')) return false;"><i class="glyphicon glyphicon-trash"></i> {{ call $.T "delete" }}</a></td>
</tr>
2017-05-10 15:08:38 +02:00
{{end}}
</table>
2017-05-10 16:43:50 +02:00
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
2017-05-10 17:47:28 +02:00
<li><a href="{{ genRoute "mod_tlist" }}">More</a></li>
2017-05-10 16:43:50 +02:00
</ul>
</nav>
2017-05-11 00:51:22 +02:00
<hr />
<h3 id="torrents">Last Torrents Reports</h3>
2017-05-10 18:47:37 +02:00
<table class="table">
2017-05-11 00:51:22 +02:00
<tr>
<th class="col-xs-9">Torrent Name</th>
<th class="col-xs-1">User</th>
<th class="col-xs-1">Reason</th>
<th class="col-xs-1">Action</th>
</tr>
{{range .TorrentReports}}
<tr>
<td><a href="{{ genRoute "view_torrent" "id" .Torrent.ID }}">{{ .Torrent.Name }}</a> (<a href="{{ genRoute "mod_tedit" }}?id={{.Torrent.ID}}">Edit</a>)</td>
<td>{{.User.Username}}</td>
<td>{{.Description}}</td>
<td><a href="{{ genRoute "mod_trdelete" }}?id={{ .ID }}" class="btn btn-danger btn-lg"><i class="glyphicon glyphicon-trash"></i> {{ call $.T "delete" }}</a></td>
</tr>
{{end}}
</table>
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
<li><a href="{{ genRoute "mod_trlist" }}">More</a></li>
</ul>
</nav>
2017-05-11 00:51:22 +02:00
<hr />
2017-05-10 16:43:50 +02:00
<h3 id="users">Last Users</h3>
2017-05-10 18:47:37 +02:00
<table class="table">
2017-05-11 00:51:22 +02:00
<tr>
<th class="col-xs-11">Username</th>
<th class="col-xs-1">Action</th>
</tr>
{{range .Users}}
2017-05-10 15:08:38 +02:00
<tr>
<td><a href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}?edit">{{ .Username }}</a></td>
<td><a href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}?delete" class="btn btn-danger btn-lg" onclick="if (!confirm('Are you sure?')) return false;"><i class="glyphicon glyphicon-trash"></i> {{ call $.T "delete" }}</a></td>
2017-05-10 15:08:38 +02:00
</tr>
{{end}}
</table>
2017-05-10 16:43:50 +02:00
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
2017-05-10 17:47:28 +02:00
<li><a href="{{ genRoute "mod_ulist" }}">More </a></li>
2017-05-10 16:43:50 +02:00
</ul>
</nav>
2017-05-11 00:51:22 +02:00
<hr />
2017-05-10 16:43:50 +02:00
<h3 id="comments">Last Comments</h3>
2017-05-10 18:47:37 +02:00
<table class="table">
2017-05-11 00:51:22 +02:00
<tr>
<th class="col-xs-10">Content</th>
<th class="col-xs-1">User</th>
<th class="col-xs-1">Action</th>
</tr>
{{range .Comments}}
2017-05-10 15:08:38 +02:00
<tr>
<td><a href="{{ genRoute "mod_cedit" }}?id={{.ID}}">{{ .Content }}</a></td>
<td><a href="{{ genRoute "mod_cedit" }}?id={{.ID}}">{{.UserID}}</a></td>
<td><a href="{{ genRoute "mod_cdelete" }}?id={{ .ID }}" class="btn btn-danger btn-lg" onclick="if (!confirm('Are you sure?')) return false;"><i class="glyphicon glyphicon-trash"></i> {{ call $.T "delete" }}</a></td>
</tr>
2017-05-10 15:08:38 +02:00
{{end}}
</table>
2017-05-10 16:43:50 +02:00
<nav class="torrentNav" aria-label="Page navigation">
<ul class="pagination">
<li><a href="{{ genRoute "mod_clist" }}">More</a></li>
2017-05-10 16:43:50 +02:00
</ul>
</nav>
{{end}}