0bf8088457
Someone need to do torrent edit page Can't do it :/
17 lignes
642 o
HTML
17 lignes
642 o
HTML
{{define "title"}}Users List{{end}}
|
|
{{define "content"}}
|
|
<table>
|
|
{{ 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">
|
|
{{ genNav .Navigation .URL 5 }}
|
|
</ul>
|
|
</nav>
|
|
{{end}}
|