c9b72206a5
* Checkpoint: it builds The config, db, model, network, os, and public packages have had some fixes to glaringly obvious flaws, dead code removed, and stylistic changes. * Style changes and old code removal in router Router needs a lot of work done to its (lack of) error handling. * Dead code removal and style changes Now up to util/email/email.go. After I'm finished with the initial sweep I'll go back and fix error handling and security issues. Then I'll fix the broken API. Then I'll go through to add documentation and fix code visibility. * Finish dead code removal and style changes Vendored libraries not touched. Everything still needs security fixes and documentation. There's also one case of broken functionality. * Fix accidental find-and-replace * Style, error checking, saftey, bug fix changes * Redo error checking erased during merge * Re-add merge-erased fix. Make Safe safe.
56 lignes
2,2 Kio
HTML
56 lignes
2,2 Kio
HTML
{{define "profile_content"}}
|
|
{{with .UserProfile}}
|
|
{{ if gt (len .Torrents) 0 }}
|
|
<div class="table-responsive">
|
|
<table class="table custom-table-hover">
|
|
<tr>
|
|
<th>{{T "category"}}</th>
|
|
<th>{{T "name"}}</th>
|
|
<th>{{T "date"}}</th>
|
|
<th>{{T "size"}}</th>
|
|
<th>{{T "links"}}</th>
|
|
</tr>
|
|
{{ range .Torrents }}
|
|
{{ with .ToJson }}
|
|
<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 style="width:80px">
|
|
<a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">
|
|
<img src="{{$.URL.Parse (printf "/img/torrents/%s.png" .SubCategory) }}">
|
|
</a>
|
|
</td>
|
|
<td class="name">
|
|
<a href="{{genRoute "view_torrent" "id" .ID }}">
|
|
{{.Name}}
|
|
</a>
|
|
</td>
|
|
<td class="date date-short">{{.Date}}</td>
|
|
<td class="filesize">{{.Filesize}}</td>
|
|
<td>
|
|
<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}}
|
|
{{end}}
|
|
</table>
|
|
<nav class="torrentNav" aria-label="Page navigation">
|
|
<ul class="pagination">
|
|
<li><a href="{{ genRoute "search" }}?userID={{ .ID }}" aria-label="Next"><span class="glyphicon glyphicon-add"></span> {{ T "see_more_torrents_from" .Username }}</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{else}}
|
|
<h2 style="text-align: center;">{{ T "no_torrents_uploaded" }}</h2>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|