a0854fe8ee
* Update ja-jp.all.json * Update ja-jp.all.json * Update _user_list_torrents.html * Update dumps.html * Update _user_list_torrents.html * Update dumps.html * Update _badgemenu.html
49 lignes
1,8 Kio
HTML
49 lignes
1,8 Kio
HTML
{{define "title"}}{{T "home"}}{{end}}
|
|
{{define "contclass"}}cont-home{{end}}
|
|
{{define "content"}}
|
|
<div class="blockBody">
|
|
<ul class="list-inline" aria-label="Page navigation">
|
|
<li><img id="mascot" src="/img/renchon.png" /></li>
|
|
<li style="padding-top: 7%;" class="pull-right"><ul class="pagination">
|
|
<a href="{{ .GPGLink }}">Gpg key</a>
|
|
</ul></li>
|
|
</nav>
|
|
|
|
<div class="table-responsive">
|
|
{{ if gt (len .ListDumps) 0 }}
|
|
<table class="table custom-table-hover">
|
|
<tr>
|
|
<th class="col-xs-8">{{T "name"}}</th>
|
|
<th class="col-xs-1 hidden-xs">{{T "date"}}</th>
|
|
<th class="col-xs-1 hidden-xs">{{T "size"}}</th>
|
|
<th class="col-xs-1 hidden-xs">{{T "links"}}</th>
|
|
</tr>
|
|
{{ range .ListDumps}}
|
|
<tr class="torrent-info">
|
|
<!-- forced width because the <td> gets bigger randomly otherwise -->
|
|
<td class="name">
|
|
{{.Name}}
|
|
</td>
|
|
<td class="hidden-xs nowrap date-short">{{.Date}}</td>
|
|
<td class="hidden-xs nowrap">{{.Filesize}}</td>
|
|
<td class="hidden-xs">
|
|
{{if ne .TorrentLink ""}}
|
|
<a href="{{.TorrentLink}}" title="{{ T "torrent_file" }}">
|
|
<span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span>
|
|
</a>
|
|
{{end}}
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{else}}
|
|
<h1>{{T "no_database_dumps_available"}}</h1>
|
|
{{end}}
|
|
</div>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
{{ genNav .Navigation .URL 5 }}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{end}}
|