3116274990
* Hide change language footer when logged in * Force people to select a report reason * Don't ask for confirmation before deleting a torrent report * Small cleanup of modpanel templates * Fix modpanel comment list * Fix missing "Delete" translation in modpanel * Update German translation * A few updates to the FAQ
92 lignes
3,3 Kio
HTML
92 lignes
3,3 Kio
HTML
{{define "title"}}Moderation Overview{{end}}
|
|
{{define "content"}}
|
|
<h3 id="torrents">Last Torrents</h3>
|
|
<table class="table">
|
|
<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> {{ T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_tlist" }}">More</a></li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
|
|
<h3 id="torrents">Last Torrents Reports</h3>
|
|
<table class="table">
|
|
<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> {{ 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>
|
|
<hr />
|
|
<h3 id="users">Last Users</h3>
|
|
<table class="table">
|
|
<tr>
|
|
<th class="col-xs-11">Username</th>
|
|
<th class="col-xs-1">Action</th>
|
|
</tr>
|
|
|
|
{{range .Users}}
|
|
|
|
<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> {{ T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_ulist" }}">More </a></li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
<h3 id="comments">Last Comments</h3>
|
|
<table class="table">
|
|
<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}}
|
|
|
|
<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> {{ T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_clist" }}">More</a></li>
|
|
</ul>
|
|
</nav>
|
|
{{end}}
|