fix hiding voting tag for anon
Cette révision appartient à :
Parent
a6f1407a2d
révision
46c105362d
1 fichiers modifiés avec 4 ajouts et 2 suppressions
|
@ -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>
|
||||
|
|
Référencer dans un nouveau ticket