2017-06-28 13:42:38 +02:00
{{block search_common()}}
< select name = "c" class = "form-input hide-xs" >
< option value = "_" > {{ T("all_categories")}}< / option >
{{ range name_cat, id_cat := GetCategories(true, true) }}
< option value = "{{ id_cat }}" { { if Search . Category = = id_cat } } selected { { end } } > {{ T(name_cat) }}< / option >
{{ end }}
< / select >
< label > < span class = "select-icon caret-down-icon" > < / span > < / label >
< select name = "s" class = "form-input hide-xs" >
< option value = "0" > {{ T("show_all")}}< / option >
< option value = "2" { { if Search . Status = = 2 } } selected { { end } } > {{ T("filter_remakes")}}< / option >
< option value = "3" { { if Search . Status = = 3 } } selected { { end } } > {{ T("trusted")}}< / option >
< option value = "4" { { if Search . Status = = 4 } } selected { { end } } > A+< / option >
< / select >
{{ if Search.ShowItemsPerPage }}
< select name = "limit" class = "form-input hide-xs" >
< option value = "5" { { if Navigation . MaxItemPerPage = = 5 } } selected { { end } } > 5< / option >
< option value = "10" { { if Navigation . MaxItemPerPage = = 10 } } selected { { end } } > 10< / option >
< option value = "15" { { if Navigation . MaxItemPerPage = = 15 } } selected { { end } } > 15< / option >
< option value = "20" { { if Navigation . MaxItemPerPage = = 20 } } selected { { end } } > 20< / option >
< option value = "25" { { if Navigation . MaxItemPerPage = = 25 } } selected { { end } } > 25< / option >
< option value = "30" { { if Navigation . MaxItemPerPage = = 30 } } selected { { end } } > 30< / option >
< option value = "35" { { if Navigation . MaxItemPerPage = = 35 } } selected { { end } } > 35< / option >
< option value = "40" { { if Navigation . MaxItemPerPage = = 40 } } selected { { end } } > 40< / option >
< option value = "45" { { if Navigation . MaxItemPerPage = = 45 } } selected { { end } } > 45< / option >
< option value = "50" { { if Navigation . MaxItemPerPage = = 50 } } selected { { end } } > 50< / option >
< option value = "70" { { if Navigation . MaxItemPerPage = = 70 } } selected { { end } } > 70< / option >
< option value = "100" { { if Navigation . MaxItemPerPage = = 100 } } selected { { end } } > 100< / option >
< option value = "150" { { if Navigation . MaxItemPerPage = = 150 } } selected { { end } } > 150< / option >
< option value = "200" { { if Navigation . MaxItemPerPage = = 200 } } selected { { end } } > 200< / option >
< option value = "300" { { if Navigation . MaxItemPerPage = = 300 } } selected { { end } } > 300< / option >
< / select >
{{ end }}
< input type = "hidden" name = "userID" value = "{{ Search.UserID }}" >
{{end}}
{{block search_button() }}
2017-07-03 00:34:18 +02:00
< input class = "form-input search-box" name = "q" placeholder = "{{ T(" search " ) } } " type = "text" value = "{{Search.NameLike}}" >
2017-06-28 13:42:38 +02:00
< button type = "submit" class = "form-input icon-search" > < / button >
{{end}}
{{block search_refine() }}
< div style = "text-align:left;" class = "box" >
< details >
< summary class = "form-input refine-drop" > {{ T("refine_search") }}< / summary >
< form style = "display: grid;" method = "GET" action = "" >
< input type = "hidden" name = "s" value = "{{Search.Status}}" / >
< input type = "hidden" name = "c" value = "{{Search.Category}}" / >
< input type = "hidden" name = "max" value = "{{Navigation.MaxItemPerPage}}" / >
< input type = "hidden" name = "userID" value = "{{Search.UserID}}" / >
2017-07-03 00:34:18 +02:00
< input type = "hidden" name = "q" value = "{{Search.NameLike}}" / >
2017-06-28 13:42:38 +02:00
< span style = "margin-top: 10px;" class = "form-refine" > {{ T("between")}} < input class = "form-input" size = "7" name = "minSize" type = "text" value = "{{Search.MinSize}}" > {{ T("and")}} < input size = "7" class = "form-input" name = "maxSize" type = "text" value = "{{Search.MaxSize}}" >
< select name = "sizeType" class = "form-input" >
< option value = "b" { { if Search . SizeType = = " b " } } selected { { end } } > B< / option >
< option value = "k" { { if Search . SizeType = = " k " } } selected { { end } } > KiB< / option >
< option value = "m" { { if Search . SizeType = = " m " } } selected { { end } } > MiB< / option >
< option value = "g" { { if Search . SizeType = = " g " } } selected { { end } } > GiB< / option >
< / select >
{{ T("large")}}
< / span >
< span class = "form-refine" > {{ T("between")}} < input class = "form-input" size = "7" name = "fromDate" type = "text" value = "{{Search.FromDate}}" > {{ T("and")}} < input class = "form-input" size = "7" name = "toDate" type = "text" value = "{{Search.ToDate}}" >
< select name = "dateType" class = "form-input" >
< option value = "d" { { if Search . DateType = = " d " } } selected { { end } } > {{ T("days")}}< / option >
< option value = "m" { { if Search . DateType = = " m " } } selected { { end } } > {{ T("months")}}< / option >
< option value = "y" { { if Search . DateType = = " y " } } selected { { end } } > {{ T("years")}}< / option >
< / select >
{{ T("old")}}.
< / span >
2017-07-03 17:17:34 +02:00
< div name = "language" class = "form-refine form-input language" >
2017-07-03 17:41:42 +02:00
{{ range _, language := GetTorrentLanguages() }}
< input type = "checkbox" name = "f" id = "lang-{{ language }}" value = "{{language}}" >
< label for = "lang-{{ language }}" class = "flag flag-{{ language }}" title = "{{LanguageName(language, T)}}" > < / label >
{{ end }}
< / div >
2017-06-28 13:42:38 +02:00
< button type = "submit" class = "form-input refine-btn" > {{ T("refine")}}< / button >
< / form >
< / details >
< / div >
{{end}}