15cd2ed558
Conflicts: main.go models.go templates/index.html Saw that some previous modifications were lost due to the previous merge :)
42 lignes
Pas d'EOL
1,4 Kio
HTML
42 lignes
Pas d'EOL
1,4 Kio
HTML
{{define "content"}}
|
|
<div class="blockBody">
|
|
<table class="table">
|
|
{{ range .ListTorrents}}
|
|
<tr {{if eq .Status 2}}class="remake"{{end}}
|
|
{{if eq .Status 3}}class="trusted"{{end}}
|
|
{{if eq .Status 4}}class="aplus"{{end}}>
|
|
<td>Id</td>
|
|
<td>{{.Id}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Name</td>
|
|
<td>{{.Name}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Hash</td>
|
|
<td>{{.Hash}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Date</td>
|
|
<td>{{.Date}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>FileSize</td>
|
|
<td>{{.Filesize}}</td>
|
|
</tr>
|
|
tr
|
|
<tr>
|
|
<td>Links</td>
|
|
<td><a href="{{.Magnet}}" title="Magnet link" ><span class="glyphicon glyphicon-magnet" aria-hidden="true"></span></a>
|
|
<a href="https://itorrents.org/torrent/{{.Hash}}.torrent" title="Torrent file"><span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span></a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Description</td>
|
|
<td>{{.Description}}</td>
|
|
</tr>
|
|
{{end}}
|
|
|
|
</table>
|
|
</div>
|
|
{{end}} |