38e8ee3a7a
* Comments count number * New Modpanel fix Fixes #755 (@ilikecats) modpanel tables have margins modpanel delete buttons are red some coloring for buttons reassign form looks better reassign form textarea have rows="20" cols="40" "save changes" btn green report reasons are now translated in modpanel delete is a real button on modpanel users page * moved getReportDescription
56 lignes
2,7 Kio
HTML
56 lignes
2,7 Kio
HTML
{{define "title"}}{{ call $.T "torrent_edit_panel" }}{{end}}
|
|
{{define "content"}}
|
|
<div class="results box">
|
|
<h3 id="torrents">{{ call $.T "torrent_edit_panel" }}</h3>
|
|
{{with .Form}}
|
|
<form style="text-align:left;padding-left:10px;padding-right:10px;" enctype="multipart/form-data" role="upload" method="POST">
|
|
{{ block "csrf_field" $ }}{{end}}
|
|
{{ range (index $.FormInfos "infos")}}
|
|
<p class="success-text">{{ . }}</p>
|
|
{{end}}
|
|
{{ range (index $.FormErrors "errors")}}
|
|
<p class="error-text">{{ . }}</p>
|
|
{{end}}
|
|
<div class="form-group">
|
|
<label for="name">{{call $.T "name"}}</label>
|
|
<input type="text" name="name" class="form-input up-input" placeholder="{{call $.T "file_name"}}" value="{{.Name}}" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="c">{{call $.T "category"}}</label>
|
|
<select name="c" class="form-input up-input">
|
|
<option value="">{{call $.T "select_a_torrent_category"}}</option>
|
|
{{ range $name_cat, $id_cat := (GetCategories false) }}
|
|
<option value="{{ $id_cat }}" {{if eq $.Form.Category $id_cat }}selected{{end}}>{{call $.T $name_cat }}</option>
|
|
{{ end }}
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="Status">{{call $.T "torrent_status"}}</label>
|
|
<select name="status" class="form-input up-input">
|
|
<option value="5" {{if eq .Status 5}}selected{{end}}>{{ call $.T "torrent_status_blocked" }}</option>
|
|
<option value="1" {{if eq .Status 1}}selected{{end}}>{{call $.T "torrent_status_normal"}}</option>
|
|
<option value="2" {{if eq .Status 2}}selected{{end}}>{{call $.T "torrent_status_remake"}}</option>
|
|
<option value="3" {{if eq .Status 3}}selected{{end}}>{{call $.T "trusted"}}</option>
|
|
<option value="4" {{if eq .Status 4}}selected{{end}}>A+</option>
|
|
</select>
|
|
</div>
|
|
{{ if $.User }}
|
|
<p>
|
|
<input type="checkbox" name="hidden" id="hidden" {{ if .Hidden }}checked{{end}}>
|
|
<label for="hidden">{{call $.T "mark_as_hidden"}}</label>
|
|
</p>
|
|
{{ end }}
|
|
<div class="form-group">
|
|
<label for="website_link">{{call $.T "website_link"}}</label>
|
|
<input name="website_link" id="website_link" class="form-input up-input" type="text" value="{{.WebsiteLink}}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="desc">{{call $.T "torrent_description"}}</label>
|
|
<p class="help-block">{{call $.T "description_markdown_notice"}}</p>
|
|
<textarea name="desc" class="form-input up-input" rows="10">{{.Description}}</textarea>
|
|
</div>
|
|
<button type="submit" class="form-input up-input btn-green">{{call $.T "save_changes"}}</button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|