1968d2ae54
* Add T field to template variables * Remove languages.SetTranslationFromRequest * Add Tfunc on handlers * Remove T and Ts from template_functions * Update templates Change the templates to use the local Tfunc, instead of the global one. Also changed the signature of the fields on template_variables.go, so that they return a template.HTML to avoid escaping problems. * Remove unnecessary variable
62 lignes
2,6 Kio
HTML
62 lignes
2,6 Kio
HTML
{{define "profile_content"}}
|
|
{{with .UserProfile}}
|
|
{{ if gt (len .Torrents) 0 }}
|
|
<div class="table-responsive">
|
|
<table class="table custom-table-hover">
|
|
<tr>
|
|
<th>{{call $.T "category"}}</th>
|
|
<th>{{call $.T "name"}}</th>
|
|
<th>{{call $.T "date"}}</th>
|
|
<th>{{call $.T "size"}}</th>
|
|
<th>{{call $.T "links"}}</th>
|
|
</tr>
|
|
{{ range $i, $t := .Torrents }}
|
|
{{ if lt $i 16 }}
|
|
{{ with $t.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) }}">
|
|
{{ if Sukebei }}
|
|
<img src="{{$.URL.Parse (printf "/img/torrents/sukebei/%s%s.png" .Category .SubCategory) }}" title="{{ call $.T (Category_Sukebei .Category .SubCategory) }}">
|
|
{{ else }}
|
|
<img src="{{$.URL.Parse (printf "/img/torrents/%s.png" .SubCategory) }}" title="{{ call $.T (Category_Nyaa .Category .SubCategory) }}">
|
|
{{ end}}
|
|
</a>
|
|
</td>
|
|
<td class="name">
|
|
<a href="{{genRoute "view_torrent" "id" .ID }}">
|
|
{{.Name}}
|
|
</a>
|
|
</td>
|
|
<td class="nowrap date-short">{{.Date}}</td>
|
|
<td class="nowrap">{{.Filesize}}</td>
|
|
<td>
|
|
<a href="{{.Magnet}}" title="{{ call $.T "magnet_link" }}">
|
|
<span class="glyphicon glyphicon-magnet" aria-hidden="true"></span>
|
|
</a>
|
|
{{if ne .TorrentLink ""}}
|
|
<a href="{{.TorrentLink}}" title="{{ call $.T "torrent_file" }}">
|
|
<span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span>
|
|
</a>
|
|
{{end}}
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
{{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> {{ call $.T "see_more_torrents_from" .Username }}</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{else}}
|
|
<h2 style="text-align: center;">{{ call $.T "no_torrents_uploaded" }}</h2>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|