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
147 lignes
8,3 Kio
HTML
147 lignes
8,3 Kio
HTML
{{define "title"}}{{.Torrent.Name}}{{end}}
|
||
{{define "contclass"}}cont-view {{if eq .Torrent.Status 2}}remake{{end}} {{if eq .Torrent.Status 3}}trusted{{end}} {{if eq .Torrent.Status 4}}aplus{{end}}{{end}}
|
||
{{ define "make_treeview" }}
|
||
{{ range $index, $folder := .Folder.Folders }}
|
||
{{ $folderId := (print $.IdentifierChain "_" $index) }}
|
||
<tr class="tr-filelist tr-folder" style="--nest-level: {{ $.NestLevel }}">
|
||
<td><label for="contents_{{$folderId}}">{{$folder.FolderName}}</label></td>
|
||
<td>{{ fileSize $folder.TotalSize $.T }}</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="2">
|
||
<input id="contents_{{$folderId}}" type="checkbox" class="filelist-checkbox">
|
||
<table class="table-filelist">
|
||
{{ template "make_treeview" (makeTreeViewData $folder (inc $.NestLevel) $.T $folderId) }}
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
{{ end }}
|
||
|
||
{{ range .Folder.Files }}
|
||
<tr class="tr-filelist tr-file" style="--nest-level: {{ $.NestLevel }}">
|
||
<td>{{.Filename}}</td>
|
||
<td>{{fileSize .Filesize $.T}}</td>
|
||
</tr>
|
||
{{ end }}
|
||
{{ end }}
|
||
|
||
{{define "content"}}
|
||
<div style="text-align: left;" class="box">
|
||
{{with .Torrent}}
|
||
{{ 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}}
|
||
{{ range (index $.Infos "infos")}}
|
||
<div class="alert alert-info"><a class="panel-close close" data-dismiss="alert">×</a><i class="glyphicon glyphicon-info-sign"></i> {{ . }}</div>
|
||
{{end}}
|
||
<div id="torrent-name" class="{{if eq .Status 2}}remake{{end}}
|
||
{{if eq .Status 3}}trusted{{end}}
|
||
{{if eq .Status 4}}aplus{{end}}">
|
||
<p style="text-align: center;" class="torrent-hr">{{.Name}}</p>
|
||
</div>
|
||
<br>
|
||
<table>
|
||
<tr class="torrent-info-row">
|
||
<td class="torrent-info-td torrent-info-label">{{ call $.T "category" }}:</td><td class="torrent-info-td torrent-info-data" style="padding:0"><a href="{{$.URL.Parse (printf "/search?c=%s_%s" .Category .SubCategory) }}">{{ if Sukebei}}{{ call $.T (CategoryName .Category .SubCategory) }}{{else}}{{ call $.T (CategoryName .Category .SubCategory) }}{{end}}</a> <br></td>
|
||
<td class="torrent-info-td torrent-info-label">{{ call $.T "date" }}:</td><td class="torrent-info-td date-full">{{.Date}}</td>
|
||
</tr>
|
||
<tr class="torrent-info-row">
|
||
<td class="torrent-info-td torrent-info-label">{{ call $.T "uploaded_by" }}:</td><td class="torrent-view-td torrent-info-data"><a href="{{ genRoute "user_profile" "id" ( print .UploaderID ) "username" (print .UploaderName) }}">{{.UploaderName}}</a></td>
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "seeders"}}:</td><td class="tr-se torrent-info-td">{{if .LastScrape.IsZero}}{{call $.T "unknown"}}{{else}}{{.Seeders}}{{end}}</td>
|
||
</tr>
|
||
<tr class="torrent-info-row">
|
||
<td class="torrent-info-td torrent-info-label">{{ call $.T "website_link" }}:</td><td class="torrent-view-td torrent-info-data">{{if ne .WebsiteLink ""}}<a href="{{.WebsiteLink}}">{{.WebsiteLink}}</a>{{else}}<a href="{{$.Config.WebAddress.Nyaa}}">{{GetHostname $.Config.WebAddress.Nyaa}}{{end}}</td>
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "leechers"}}:</td><td class="tr-le torrent-info-td">{{if .LastScrape.IsZero}}{{call $.T "unknown"}}{{else}}{{.Leechers}}{{end}}</td>
|
||
</tr>
|
||
<tr class="torrent-info-row">
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "hash"}}:</td><td style="font-family: monospace;" class="torrent-view-td torrent-info-data">{{.Hash}}</td>
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "completed"}}:</td><td class="torrent-info-td"><b>{{if .LastScrape.IsZero}}{{call $.T "unknown"}}{{else}}{{.Completed}}{{end}}</b></td>
|
||
</tr>
|
||
<tr class="torrent-info-row">
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "size"}}:</td><td class="torrent-view-td torrent-info-data">{{ fileSize .Filesize $.T }}</td>
|
||
<td class="torrent-info-td torrent-info-label">{{call $.T "last_scraped"}}</td><td class="torrent-info-td{{if not .LastScrape.IsZero}} date-full">{{formatDateRFC .LastScrape}}{{else}}">{{call $.T "unknown"}}{{end}}</td>
|
||
</tr>
|
||
</table>
|
||
<div class="torrent-buttons">
|
||
<a href="{{.Magnet}}" class="form-input">{{call $.T "magnet_link"}}</a>
|
||
{{ if ne .TorrentLink ""}}
|
||
<a href="{{.TorrentLink}}" class="form-input">{{call $.T "torrent_file"}}</a>
|
||
{{end}}
|
||
{{ if gt $.User.ID 0}}
|
||
<script>
|
||
function reportPopup() {
|
||
var reportContent = `
|
||
<h4>{{ call $.T "report_torrent_number" (print $.Torrent.ID) }}</h4>
|
||
<b>{{ call $.T "report_type" }}:</b>
|
||
<form method="post" action="/report/{{$.Torrent.ID}}">
|
||
{{ block "csrf_field" $ }}{{end}}
|
||
<input type="radio" name="report_type" value="illegal_content" id="illegal" required> <label for="illegal">{{ call $.T "illegal_content" }}</label><br />
|
||
<input type="radio" name="report_type" value="spam_garbage" id="spam" required> <label for="spam">{{ call $.T "spam_garbage" }}</label><br />
|
||
<input type="radio" name="report_type" value="wrong_category" id="wrongcat" required> <label for="wrongcat">{{ call $.T "wrong_category" }}</label><br />
|
||
<input type="radio" name="report_type" value="duplicate_deprecated" id="dup" required> <label for="dup">{{ call $.T "duplicate_deprecated" }}</label><br />
|
||
<button type="submit" class="btn btn-default">{{ call $.T "report_btn" }}</button>
|
||
</form> <br />
|
||
`;
|
||
var reportWindow = window.open("", 'reportWindow', "width=300,height=300"); // Opens a new window
|
||
reportWindow.document.write(reportContent);
|
||
}
|
||
</script>
|
||
<a onclick="reportPopup();" class="form-input">{{ call $.T "report_btn" }}</a>
|
||
{{end}}
|
||
{{ if HasAdmin $.User}}
|
||
<a href="{{ genRoute "mod_tdelete" }}?id={{ .ID }}" class="form-input" onclick="if (!confirm('{{ call $.T "are_you_sure" }}')) return false;">{{ call $.T "delete" }}</a>
|
||
<a href="{{ genRoute "mod_tedit" }}?id={{ .ID }}" class="form-input">{{ call $.T "edit" }}</a>
|
||
{{end}}
|
||
</div>
|
||
<p class="torrent-hr">{{call $.T "description"}}</p>
|
||
{{ if ne .Description ""}}
|
||
<div id="description-box" class="torrent-info-box">{{.Description}}</div>
|
||
{{else}}
|
||
<p>{{ call $.T "no_description" }}</p>
|
||
{{end}}
|
||
<input type="checkbox" id="show-filelist">
|
||
<label class="torrent-hr filelist-control" for="show-filelist">{{call $.T "files"}}</label>
|
||
<div class="torrent-info-box" id="filelist">
|
||
{{ if gt (len .FileList) 0 }}
|
||
{{/* how do i concat lol */}}
|
||
<table class="table-filelist">
|
||
<thead>
|
||
<th style="width: 80%">{{call $.T "filename"}}</th>
|
||
<th>{{call $.T "size"}}</th>
|
||
</thead>
|
||
<tbody>
|
||
{{ template "make_treeview" (makeTreeViewData $.RootFolder 0 $.T "root") }}
|
||
</tbody>
|
||
</table>
|
||
{{ else }}
|
||
<p>{{ call $.T "no_files" }}</p>
|
||
{{ end }}
|
||
</div>
|
||
|
||
<p class="torrent-hr">{{call $.T "comments"}}</p>
|
||
{{range $index, $element := .Comments}}
|
||
<div class="torrent-info-box comment-box">
|
||
<span class="comment-index"><a href="#comment_{{inc $index}}">#{{inc $index}}</a><small style="padding-left: 4px;" class="date-short">{{formatDateRFC .Date}}</small></span>
|
||
<p>{{.Username}}</p>
|
||
<p>{{.Content}}</p>
|
||
</div>
|
||
{{end}}
|
||
{{end}}
|
||
<div style="margin-top: 10px" class="torrent-info-box">
|
||
<form method="post">
|
||
{{ block "csrf_field" $ }}{{end}}
|
||
<div class="comment-form">
|
||
<div class="comment-text">
|
||
<h3>{{ if gt .User.ID 0}} {{call $.T "submit_a_comment_as_username" .User.Username}} {{else}} {{call $.T "submit_a_comment_as_anonymous"}} {{end}}</h3>
|
||
<textarea style="height: 10rem;" placeholder="サンキュー" name="comment" class="form-input up-input"></textarea>
|
||
</div>
|
||
<div class="comment-captcha">
|
||
{{block "captcha" (makeCaptchaData .CaptchaID $.T)}}{{end}}
|
||
<button type="submit" class="form-input up-btn">{{call $.T "submit" }}</button>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
{{end}}
|
||
|