2017-05-06 10:36:37 +02:00
{{define "title"}}Upload magnet{{end}}
{{define "content"}}
< div class = "blockBody" >
{{with .Upload}}
< hr >
2017-05-07 03:32:26 +02:00
< form enctype = "multipart/form-data" role = "upload" method = "POST" >
2017-05-20 17:01:13 +02:00
{{ range (index $.FormErrors "errors")}}
< div class = "alert alert-danger" > < a class = "panel-close close" data-dismiss = "alert" > × < / a > < i class = "glyphicon glyphicon-exclamation-sign" > < / i > {{ . }}< / div >
{{end}}
2017-05-06 09:47:30 +02:00
< div class = "form-group" >
2017-05-21 00:38:28 +02:00
< label for = "name" > {{call $.T "name"}}< / label >
< input type = "text" name = "name" id = "name" class = "form-control" placeholder = "{{call $.T " file_name " } } " value = "{{.Name}}" autofocus required >
2017-05-06 09:47:30 +02:00
< / div >
< div class = "form-group" >
2017-05-21 00:38:28 +02:00
< label for = "torrent" > {{call $.T "torrent_file"}}< / label >
2017-05-07 13:38:46 +02:00
< input type = "file" name = "torrent" id = "torrent" accept = ".torrent" >
2017-05-21 00:38:28 +02:00
< p class = "help-block" > {{call $.T "uploading_file_prefills_fields"}}< / p >
2017-05-06 09:47:30 +02:00
< / div >
< div class = "form-group" >
2017-05-21 00:38:28 +02:00
< label for = "magnet" > {{call $.T "magnet_link"}}< / label >
2017-05-13 15:08:14 +02:00
< input type = "text" name = "magnet" id = "magnet" class = "form-control"
2017-05-21 00:38:28 +02:00
style="width:60rem" placeholder="{{call $.T "magnet_link"}}" value="{{.Magnet}}">
2017-05-06 09:47:30 +02:00
< / div >
< div class = "form-group" >
2017-05-21 00:38:28 +02:00
< label for = "c" > {{call $.T "category"}}< / label >
2017-05-23 02:10:06 +02:00
< select name = "c" id = "c" class = "form-control input-sm" required >
2017-05-21 00:38:28 +02:00
< option value = "" > {{call $.T "select_a_torrent_category"}}< / option >
2017-05-23 02:10:06 +02:00
{{ if Sukebei }}
< option value = "1_1" { { if eq . Category " 1_1 " } } selected { { end } } > {{call $.T "art_anime"}}< / option >
< option value = "1_2" { { if eq . Category " 1_2 " } } selected { { end } } > {{call $.T "art_doujinshi"}}< / option >
< option value = "1_3" { { if eq . Category " 1_3 " } } selected { { end } } > {{call $.T "art_games"}}< / option >
< option value = "1_4" { { if eq . Category " 1_4 " } } selected { { end } } > {{call $.T "art_manga"}}< / option >
< option value = "1_5" { { if eq . Category " 1_5 " } } selected { { end } } > {{call $.T "art_pictures"}}< / option >
< option value = "2_1" { { if eq . Category " 2_1 " } } selected { { end } } > {{call $.T "real_life_photobooks_and_Pictures"}}< / option >
< option value = "2_2" { { if eq . Category " 2_2 " } } selected { { end } } > {{call $.T "real_life_videos"}}< / option >
{{ else }}
< option value = "3_12" { { if eq . Category " 3_12 " } } selected { { end } } > {{call $.T "anime_amv"}}< / option >
< option value = "3_5" { { if eq . Category " 3_5 " } } selected { { end } } > {{call $.T "anime_english_translated"}}< / option >
< option value = "3_13" { { if eq . Category " 3_13 " } } selected { { end } } > {{call $.T "anime_non_english_translated"}}< / option >
< option value = "3_6" { { if eq . Category " 3_6 " } } selected { { end } } > {{call $.T "anime_raw"}}< / option >
< option value = "2_3" { { if eq . Category " 2_3 " } } selected { { end } } > {{call $.T "audio_lossless"}}< / option >
< option value = "2_4" { { if eq . Category " 2_4 " } } selected { { end } } > {{call $.T "audio_lossy"}}< / option >
< option value = "4_7" { { if eq . Category " 4_7 " } } selected { { end } } > {{call $.T "literature_english_translated"}}< / option >
< option value = "4_8" { { if eq . Category " 4_8 " } } selected { { end } } > {{call $.T "literature_raw"}}< / option >
< option value = "4_14" { { if eq . Category " 4_14 " } } selected { { end } } > {{call $.T "literature_non_english_translated"}}< / option >
< option value = "5_9" { { if eq . Category " 5_9 " } } selected { { end } } > {{call $.T "live_action_english_translated"}}< / option >
< option value = "5_10" { { if eq . Category " 5_10 " } } selected { { end } } > {{call $.T "live_action_idol_pv"}}< / option >
< option value = "5_18" { { if eq . Category " 5_18 " } } selected { { end } } > {{call $.T "live_action_non_english_translated"}}< / option >
< option value = "5_11" { { if eq . Category " 5_11 " } } selected { { end } } > {{call $.T "live_action_raw"}}< / option >
< option value = "6_15" { { if eq . Category " 6_15 " } } selected { { end } } > {{call $.T "pictures_graphics"}}< / option >
< option value = "6_16" { { if eq . Category " 6_16 " } } selected { { end } } > {{call $.T "pictures_photos"}}< / option >
< option value = "1_1" { { if eq . Category " 1_1 " } } selected { { end } } > {{call $.T "software_applications"}}< / option >
< option value = "1_2" { { if eq . Category " 1_2 " } } selected { { end } } > {{call $.T "software_games"}}< / option >
2017-05-15 11:08:17 +02:00
{{ end }}
2017-05-06 09:47:30 +02:00
< / select >
2017-05-21 00:38:28 +02:00
< p class = "help-block" > {{ call $.T "please_include_our_tracker" }}< / p >
2017-05-10 22:03:14 +02:00
< / div >
< div class = "form-group" >
2017-05-13 15:08:14 +02:00
< input type = "checkbox" name = "remake" id = "remake" >
2017-05-21 00:38:28 +02:00
< label for = "remake" > {{call $.T "mark_as_remake"}}< / label >
2017-05-06 09:47:30 +02:00
< / div >
2017-05-21 04:10:59 +02:00
< div class = "form-group" >
< label for = "website_link" > {{call $.T "website_link"}}< / label >
< input name = "website_link" id = "website_link" class = "form-control" type = "text" value = "{{.WebsiteLink}}" >
< / div >
2017-05-06 09:47:30 +02:00
< div class = "form-group" >
2017-05-21 00:38:28 +02:00
< label for = "desc" > {{call $.T "torrent_description"}}< / label >
< p class = "help-block" > {{call $.T "description_markdown_notice"}}< / p >
2017-05-20 17:01:13 +02:00
< textarea name = "desc" id = "desc" class = "form-control torrent-desc" rows = "15" > {{.Description}}< / textarea >
< / div >
2017-05-07 10:25:09 +02:00
2017-05-21 04:10:31 +02:00
{{block "captcha" (makeCaptchaData .CaptchaID $.T)}}{{end}}
2017-05-07 10:25:09 +02:00
2017-05-21 00:38:28 +02:00
< button type = "submit" class = "btn btn-success" > {{call $.T "upload"}}< / button >
2017-05-06 09:47:30 +02:00
< br / >
< br / >
< / form >
{{end}}
2017-05-06 10:36:37 +02:00
< / div >
2017-05-07 13:38:46 +02:00
{{end}}
{{define "js_footer"}}
< script type = "text/javascript" charset = "utf-8" src = "{{.URL.Parse " / js / uploadPage . js " } } " > < / script >
2017-05-17 12:26:28 +02:00
< script type = "text/javascript" charset = "utf-8" src = "https://cdnjs.cloudflare.com/ajax/libs/markdown.js/0.5.0/markdown.min.js" > < / script >
< script type = "text/javascript" charset = "utf-8" src = "https://cdnjs.cloudflare.com/ajax/libs/to-markdown/3.0.4/to-markdown.js" > < / script >
< script type = "text/javascript" charset = "utf-8" src = "https://cdnjs.cloudflare.com/ajax/libs/bootstrap-markdown/2.10.0/js/bootstrap-markdown.js" > < / script >
< script >
$(".torrent-desc").markdown({resize: "both"})
< / script >
2017-05-07 13:38:46 +02:00
{{end}}