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/torrent_report.html
akuma06 bd7fe52273 New ModPanel Theme (#883)
* 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
2017-06-02 20:10:36 +02:00

28 lignes
1,4 Kio
HTML

{{define "title"}}{{ call $.T "reports_list" }}{{end}}
{{define "content"}}
<div class="results box">
<h1>{{ call $.T "reports_list" }}</h1>
<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-actions">{{ call $.T "actions" }}</th>
</tr>
</thead>
<tbody>
{{range .Models}}
<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-actions home-td">
<a href="{{ genRoute "mod_tdelete" }}?id={{ print .Torrent.ID }}" class="form-input" onclick="if (!confirm('{{ call $.T "are_you_sure" }}')) return false;"><i class="trash-icon"></i>{{ call $.T "delete_torrent" }}</a><br>
<a href="{{ genRoute "mod_trdelete" }}?id={{ print .ID }}" class="form-input"><i class="trash-icon"></i>{{ call $.T "delete_report" }}</a></td>
</tr>
{{end}}
</tbody>
</table>
</div>
{{end}}