Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

fix hiding voting tag for anon

Cette révision appartient à :
akuma06 2017-08-01 14:12:17 +02:00
Parent a6f1407a2d
révision 46c105362d

Voir le fichier

@ -70,14 +70,16 @@
<td class="torrent-info-td torrent-info-label">{{ T("torrent_tags")}}:</td>
<td class="tr-flag torrent-view-td torrent-info-data">
{{ range Torrent.Tags }}
{{if !.Accepted || User.ID > 0 }}
{{if .Accepted || User.ID > 0 }}
<span class="tag{{ if len(Torrent.Tags) > 5 }} big{{ end }}{{ if !.Accepted }} pending{{else}} accepted{{end}}" title="Tag: {{ .Type }} ({{ if !.Accepted }}{{ .Total }}{{else}}{{ T("accepted") }}{{end}})">
<span class="tag-text{{ if User.ID > 0 }} votable{{end}}">
{{ T("tagtype_" + .Type) }}: {{ .Tag }}
</span>
{{ if !.Accepted }}
<a href="/torrent/tag/{{ if User.Tags.Contains(.) }}remove{{else}}add{{end}}?id={{Torrent.ID}}&tag={{ .Tag }}&type={{ .Type }}" class="tag-form {{ if User.Tags.Contains(.) }}minus{{else}}plus{{end}}{{if .Accepted}} accepted{{end}}"></a>
{{ end }}
</span>
{{end}}
{{end}}
{{end}}
{{ if User.ID > 0 }}<a id="tagPopup" href="/torrent/tag?id={{ Torrent.ID }}" class="add-tag">{{ T("add") }}</a>{{ end }}
</td>