63 lignes
3,5 Kio
HTML
63 lignes
3,5 Kio
HTML
{{define "title"}}Upload magnet{{end}}
|
|
{{define "content"}}
|
|
<div class="blockBody">
|
|
{{with .Upload}}
|
|
<hr>
|
|
<form enctype="multipart/form-data" role="upload" method="POST">
|
|
|
|
<div class="form-group">
|
|
<label for="name">{{T "name"}}</label>
|
|
<input type="text" name="name" class="form-control" placeholder="File Name" value="{{.Name}}" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="torrent">{{T "torrent_file"}}</label>
|
|
<input type="file" name="torrent" id="torrent" accept=".torrent">
|
|
<p class="help-block">{{T "uploading_file_prefills_fields"}}</p>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="magnet">{{T "magnet_link"}}</label>
|
|
<input type="text" name="magnet" class="form-control"
|
|
style="width:60rem" placeholder="{{T "magnet_link"}}" value="{{.Magnet}}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="c">{{T "category"}}</label>
|
|
<select name="c" class="form-control input-sm">
|
|
<option value="3_12" {{if eq .Category "3_12"}}selected{{end}}>{{T "anime_amv"}}</option>
|
|
<option value="3_5" {{if eq .Category "3_5"}}selected{{end}}>{{T "anime_english_translated"}}</option>
|
|
<option value="3_13" {{if eq .Category "3_13"}}selected{{end}}>{{T "anime_non_english_translated"}}</option>
|
|
<option value="3_6" {{if eq .Category "3_6"}}selected{{end}}>{{T "anime_raw"}}</option>
|
|
<option value="2_3" {{if eq .Category "2_3"}}selected{{end}}>{{T "audio_lossless"}}</option>
|
|
<option value="2_4" {{if eq .Category "2_4"}}selected{{end}}>{{T "audio_lossy"}}</option>
|
|
<option value="4_7" {{if eq .Category "4_7"}}selected{{end}}>{{T "literature_english_translated"}}</option>
|
|
<option value="4_8" {{if eq .Category "4_8"}}selected{{end}}>{{T "literature_raw"}}</option>
|
|
<option value="4_14" {{if eq .Category "4_14"}}selected{{end}}>{{T "literature_non_english_translated"}}</option>
|
|
<option value="5_9" {{if eq .Category "5_9"}}selected{{end}}>{{T "live_action_english_translated"}}</option>
|
|
<option value="5_10" {{if eq .Category "5_10"}}selected{{end}}>{{T "live_action_idol_pv"}}</option>
|
|
<option value="5_18" {{if eq .Category "5_18"}}selected{{end}}>{{T "live_action_non_english_translated"}}</option>
|
|
<option value="5_11" {{if eq .Category "5_11"}}selected{{end}}>{{T "live_action_raw"}}</option>
|
|
<option value="6_15" {{if eq .Category "6_15"}}selected{{end}}>{{T "pictures_graphics"}}</option>
|
|
<option value="6_16" {{if eq .Category "6_16"}}selected{{end}}>{{T "pictures_photos"}}</option>
|
|
<option value="1_1" {{if eq .Category "1_1"}}selected{{end}}>{{T "software_applications"}}</option>
|
|
<option value="1_2" {{if eq .Category "1_2"}}selected{{end}}>{{T "software_games"}}</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="desc">{{T "torrent_description"}}</label>
|
|
<p class="help-block">{{T "description_markdown_notice"}}</p>
|
|
<textarea name="desc" class="form-control" rows="10">{{.Description}}</textarea>
|
|
</div>
|
|
|
|
{{block "captcha" .}}{{end}}
|
|
|
|
<button type="submit" class="btn btn-success">{{T "upload"}}</button>
|
|
<br />
|
|
<br />
|
|
</form>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
{{define "js_footer"}}
|
|
<script type="text/javascript" charset="utf-8" src="{{.URL.Parse "/js/uploadPage.js"}}"></script>
|
|
{{end}}
|