1968d2ae54
* Add T field to template variables * Remove languages.SetTranslationFromRequest * Add Tfunc on handlers * Remove T and Ts from template_functions * Update templates Change the templates to use the local Tfunc, instead of the global one. Also changed the signature of the fields on template_variables.go, so that they return a template.HTML to avoid escaping problems. * Remove unnecessary variable
26 lignes
918 o
HTML
26 lignes
918 o
HTML
{{define "title"}}Comments List{{end}}
|
|
{{define "content"}}
|
|
<table class="table">
|
|
<tr>
|
|
<th class="col-xs-10">Content</th>
|
|
<th class="col-xs-1">Torrent</th>
|
|
<th class="col-xs-1">User</th>
|
|
<th class="col-xs-1">Action</th>
|
|
</tr>
|
|
|
|
{{ range .Comments}}
|
|
|
|
<tr>
|
|
<!-- TODO: add href="{{ genRoute "mod_cedit" }}?id={{.ID}}" for comment editing -->
|
|
<td><a>{{ .Content }}</a></td>
|
|
<td><a href="{{ genViewTorrentRoute .TorrentID }}">{{ .TorrentID }}</a></td>
|
|
<td>{{ .UserID }}</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>
|
|
{{end}}
|
|
</table>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
{{ genNav .Navigation .URL 5 }}
|
|
</ul>
|
|
</nav>
|
|
{{end}}
|