2773fe200d
* Making the code Golint friendly * No exported variables when not needed * Same for functions * Simplifying Templates variables with a form basic template variable and a modelList basic template variable * Adapted templates to new template variables * use of .Models instead of model list * use of .Form instead of modelform * Small fix * Small fix 2 Forgot $.Form * Reverting templateDir as a var
21 lignes
767 o
HTML
21 lignes
767 o
HTML
{{define "title"}}Torrents Report{{end}}
|
|
{{define "content"}}
|
|
<table class="table">
|
|
<tr>
|
|
<th class="col-xs-8">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 .Models}}
|
|
<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_tdelete" }}?id={{ .Torrent.ID }}" onclick="if (!confirm('Are you sure?')) return false;">Delete</a><br />
|
|
<a href="{{ genRoute "mod_trdelete" }}?id={{ .ID }}">Delete Report</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{end}}
|