From 3ccfef7eb03af91875451c9b4af2def7911b5df0 Mon Sep 17 00:00:00 2001 From: kilo Date: Fri, 1 Sep 2017 07:27:18 +0200 Subject: [PATCH] Move video quality row under all the tags instead of between accepted & non-accepted tags --- templates/site/torrents/view.jet.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/templates/site/torrents/view.jet.html b/templates/site/torrents/view.jet.html index 4bbe1708..7a37bb64 100644 --- a/templates/site/torrents/view.jet.html +++ b/templates/site/torrents/view.jet.html @@ -98,15 +98,7 @@ {{ end }} - {{ if Torrent.VideoQuality != "" }} - - {{ T("tagtype_videoquality") }}: - - {{ T("tagvalue_"+Torrent.VideoQuality) }} - - - {{ end }} - {{ if len(Torrent.AcceptedTags) > 0 }} + {{ if len(Torrent.AcceptedTags) > 0 }} {{ T("accepted_tags")}}: @@ -128,6 +120,14 @@ {{ end }} + {{ if Torrent.VideoQuality != "" }} + + {{ T("tagtype_videoquality") }}: + + {{ T("tagvalue_"+Torrent.VideoQuality) }} + + + {{ end }}