13375411ad
* Make comments extra column * Fixed #595 w00t * Cleanups and fixes (#623) * Keep naming consistent * Remove execute bit from files * Default to DefaultLanguage (without passing it to the func) * Remove commented code * Use Content-Type to get language json * Lines of 400 characters is dumb * Update new repo in README * Remove useless script since we fallback to a defaultlang * Fix fallback language panic * Fix uninitialized MaxPerPage when not in querystr The issue was that the req.MaxPerPage was not set (default to 0) when the query string didn't include "max". This makes the server query the whole db since the resulting limit is 0. * Fix creating empty torrents (only worked once) * Lines of 400 characters is still dumb * Update ja-jp.all.json (#622) * Update README.md * Make comments extra column * Fixed #595 w00t * Comment out comments for now
95 lignes
4,2 Kio
HTML
95 lignes
4,2 Kio
HTML
{{define "title"}}{{T "home"}}{{end}}
|
|
{{define "contclass"}}cont-home{{end}}
|
|
{{define "content"}}
|
|
|
|
<audio id="nyaapassu" hidden>
|
|
<source src="http://nyanpass.com/nyanpass.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio element.
|
|
</audio>
|
|
<audio id="explosion" hidden>
|
|
<source src="https://megumin.love/sounds/explosion.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio element.
|
|
</audio>
|
|
|
|
<span id="mascot" class="visible-lg-block"></span>
|
|
|
|
<div class="blockBody">
|
|
<nav>
|
|
<ul class="list-inline text-center" aria-label="Page navigation">
|
|
<li><ul class="pagination">
|
|
{{ genNav .Navigation .URL 5 }}
|
|
</li></ul>
|
|
</nav>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table custom-table-hover">
|
|
<tr>
|
|
<th class="col-xs-1 hidden-xs">{{T "category"}}</th>
|
|
<th class="col-xs-5">
|
|
<a href="{{ genSearchWithOrdering .URL "1" }}">{{T "name"}}{{ genSortArrows .URL "1" }}</a>
|
|
</th>
|
|
<!-- <th class="col-xs-1 hidden-xs"><span class="glyphicon glyphicon-comment"></span></th> -->
|
|
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "5" }}">{{T "S"}}{{ genSortArrows .URL "5" }}</a></th>
|
|
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "6" }}">{{T "L"}}{{ genSortArrows .URL "6" }}</a></th>
|
|
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "7" }}">{{T "D"}}{{ genSortArrows .URL "7" }}</a></th>
|
|
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "2" }}">{{T "date"}}{{ genSortArrows .URL "2" }}</th></a>
|
|
<th class="col-xs-1 hidden-xs"><a href="{{ genSearchWithOrdering .URL "4" }}">{{T "size"}}{{ genSortArrows .URL "4" }}</a></th>
|
|
<th class="col-xs-1 hidden-xs">{{T "links"}}</th>
|
|
</tr>
|
|
{{ range .ListTorrents}}
|
|
<tr class="torrent-info
|
|
{{if eq .Status 2}}remake{{end}}
|
|
{{if eq .Status 3}}trusted{{end}}
|
|
{{if eq .Status 4}}aplus{{end}}">
|
|
<!-- forced width because the <td> gets bigger randomly otherwise -->
|
|
<td class="hidden-xs" style="width:80px">
|
|
<a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">
|
|
{{ if Sukebei }}
|
|
|
|
<img src="{{$.URL.Parse (printf "/img/torrents/sukebei/%s%s.png" .Category .SubCategory) }}">
|
|
|
|
{{ else }}
|
|
<img src="{{$.URL.Parse (printf "/img/torrents/%s.png" .SubCategory) }}">
|
|
{{ end}}
|
|
</a>
|
|
</td>
|
|
<td class="name">
|
|
<a href="{{genRoute "view_torrent" "id" .ID }}">
|
|
{{.Name}}
|
|
</a>
|
|
</td>
|
|
<!--
|
|
<td class="hidden-xs">
|
|
{{len .Comments}}
|
|
</td>
|
|
-->
|
|
{{if .LastScrape.IsZero}}
|
|
<td class="hidden-xs" colspan="3" align="center">{{T "unknown"}}</td>
|
|
{{else}}
|
|
<td class="hidden-xs"><b class="text-success">{{.Seeders}}</b></td>
|
|
<td class="hidden-xs"><b class="text-danger">{{.Leechers}}</b></td>
|
|
<td class="hidden-xs">{{.Completed}}</td>
|
|
{{end}}
|
|
<td class="hidden-xs nowrap date-short">{{.Date}}</td>
|
|
<td class="hidden-xs nowrap">{{.Filesize}}</td>
|
|
<td class="hidden-xs nowrap">
|
|
<a href="{{.Magnet}}" title="Magnet link">
|
|
<span class="glyphicon glyphicon-magnet" aria-hidden="true"></span>
|
|
</a>
|
|
{{if ne .TorrentLink ""}}
|
|
<a href="{{.TorrentLink}}" title="Torrent file">
|
|
<span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span>
|
|
</a>
|
|
{{end}}
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
</div>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
{{ genNav .Navigation .URL 5 }}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{end}}
|