bd7fe52273
* New ModPanel Theme * Implemented the new @kipukun theme in ModPanel * Added new translation string * Fixed the toolbar in /mod/torrents * Little fix on torrents report * Remove double navigation * Added a tag h1 for pages and new translation strings~ * fix warn message
105 lignes
4,5 Kio
HTML
105 lignes
4,5 Kio
HTML
{{define "title"}}{{ call $.T "moderation_overview" }}{{end}}
|
|
{{define "content"}}
|
|
<div class="results box">
|
|
<h3 id="torrents">{{ call $.T "last_torrents" }}</h3>
|
|
<table class="table">
|
|
<thead class="torrent-info">
|
|
<tr>
|
|
<th class="tr-name">{{ call $.T "name" }}</th>
|
|
<th class="tr-size">{{ call $.T "username" }}</th>
|
|
<th class="tr-size">{{ call $.T "actions" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Torrents}}
|
|
<tr>
|
|
<td class="tr-name"><a href="{{ genViewTorrentRoute .ID }}">{{ .Name }}</a> <a href="{{ genRoute "mod_tedit" }}?id={{.ID}}" class="form-input float-right">{{ call $.T "edit" }}</a></td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "mod_tlist" }}?userID={{.UploaderID}}">{{ .UploaderID }}</a></td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "mod_tdelete" }}?id={{ .ID }}" class="form-input" onclick="if (!confirm('{{ call $.T "are_you_sure" }}')) return false;"><i class="trash-icon"></i> {{ call $.T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
<nav class="adminNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_tlist" }}">More</a></li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
|
|
<h3 id="torrents">{{ call $.T "last_reports" }}</h3>
|
|
<table class="table">
|
|
<thead class="torrent-info">
|
|
<tr>
|
|
<th class="tr-name">{{ call $.T "name" }}</th>
|
|
<th class="tr-size">{{ call $.T "username" }}</th>
|
|
<th class="tr-size">{{ call $.T "reason" }}</th>
|
|
<th class="tr-size">{{ call $.T "actions" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .TorrentReports}}
|
|
<tr>
|
|
<td class="tr-name"><a href="{{ genRoute "view_torrent" "id" (print .Torrent.ID ) }}">{{ .Torrent.Name }}</a> <a href="{{ genRoute "mod_tedit" }}?id={{ print .Torrent.ID}}" class="form-input float-right">{{ call $.T "edit" }}</a></td>
|
|
<td class="tr-size home-td">{{.User.Username}}</td>
|
|
<td class="tr-size home-td">{{.Description}}</td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "mod_trdelete" }}?id={{ print .ID }}" class="form-input"><i class="trash-icon"></i> {{ call $.T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
<nav class="adminNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_trlist" }}">{{ call $.T "more" }}</a></li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
<h3 id="users">{{ call $.T "last_users" }}</h3>
|
|
<table class="table">
|
|
<thead class="torrent-info">
|
|
<tr>
|
|
<th class="tr-name">{{ call $.T "username" }}</th>
|
|
<th class="tr-size">{{ call $.T "actions" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Users}}
|
|
<tr>
|
|
<td class="tr-name"><a href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}?edit">{{ .Username }}</a></td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "user_profile" "id" (print .ID) "username" .Username }}?delete" class="form-input" onclick="if (!confirm('{{ call $.T "are_you_sure" }}')) return false;"><i class="trash-icon"></i> {{ call $.T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
<nav class="adminNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_ulist" }}">{{ call $.T "more" }} </a></li>
|
|
</ul>
|
|
</nav>
|
|
<hr />
|
|
<h3 id="comments">{{ call $.T "last_comments" }}</h3>
|
|
<table class="table">
|
|
<thead class="torrent-info">
|
|
<tr>
|
|
<th class="tr-name">{{ call $.T "comments" }}</th>
|
|
<th class="tr-size">{{ call $.T "username" }}</th>
|
|
<th class="tr-size">{{ call $.T "actions" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Comments}}
|
|
<tr>
|
|
<td class="tr-name"><a href="{{ genRoute "mod_cedit" }}?id={{.ID}}">{{ .Content }}</a></td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "mod_cedit" }}?id={{.ID}}">{{.UserID}}</a></td>
|
|
<td class="tr-size home-td"><a href="{{ genRoute "mod_cdelete" }}?id={{ .ID }}" class="form-input" onclick="if (!confirm('{{ call $.T "are_you_sure" }}')) return false;"><i class="trash-icon"></i> {{ call $.T "delete" }}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
<nav class="adminNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "mod_clist" }}">{{ call $.T "more" }}</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{end}}
|