mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 03:40:00 +00:00
Merge pull request #276 from CounterPillow/report-improvements
Frontend report improvements
This commit is contained in:
commit
1cee6cb647
|
@ -411,3 +411,11 @@ h6:hover .header-anchor {
|
|||
margin-top: auto;
|
||||
}
|
||||
}
|
||||
|
||||
table.table > tbody > tr.reports-row > td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td.report-action-column {
|
||||
min-width: 150px;
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
{% block title %}Reports :: {{ config.SITE_NAME }}{% endblock %}
|
||||
{% block body %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover table-striped">
|
||||
<div class="table">
|
||||
<table class="table table-bordered table-hover table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
|
@ -16,23 +16,38 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{% for report in reports.items %}
|
||||
<tr>
|
||||
<tr class="reports-row">
|
||||
<td>{{ report.id }}</td>
|
||||
<td>
|
||||
<a href="{{ url_for('view_user', user_name=report.user.username) }}">{{ report.user.username }}</a>
|
||||
{% if report.user.is_trusted %}
|
||||
<span class="label label-success pull-right">Trusted</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<a href="{{ url_for('view_torrent', torrent_id=report.torrent.id) }}">{{ report.torrent.display_name }}</a>
|
||||
by <a href="{{ url_for('view_user', user_name=report.torrent.user.username) }}">
|
||||
{{ report.torrent.user.username }}</a>
|
||||
{% if g.user.is_superadmin and report.torrent.uploader_ip %}
|
||||
({{ report.torrent.uploader_ip_string }})
|
||||
{% endif %}
|
||||
{% if report.torrent.user.is_trusted %}
|
||||
<span class="label label-success pull-right">Trusted</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ report.reason }}</td>
|
||||
<td>{{ report.created_time }}</td>
|
||||
<td style="width: 15%">
|
||||
<td class="report-action-column">
|
||||
<form method="post">
|
||||
{{ report_action.csrf_token }}
|
||||
{{ report_action.action }}
|
||||
{{ report_action.torrent(value=report.torrent.id) }}
|
||||
{{ report_action.report(value=report.id) }}
|
||||
<button type="submit" class="btn btn-primary pull-right">Review</button>
|
||||
<div class="input-group input-group-sm">
|
||||
{{ report_action.action(class_="form-control") }}
|
||||
<div class="input-group-btn">
|
||||
<button type="submit" class="btn btn-primary">Review</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -189,6 +189,12 @@
|
|||
<h4 class="modal-title">Report torrent #{{ torrent.id }}</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="alert alert-warning" role="alert">
|
||||
Before submitting a report, please check that the torrent
|
||||
actually breaks <a href="{{ url_for('site_rules') }}">the
|
||||
rules</a>. Useless reports like "download is slow" or
|
||||
"thanks" can get you banned from the site.
|
||||
</div>
|
||||
<form method="POST" action="{{ request.url }}/submit_report">
|
||||
{{ report_form.csrf_token }}
|
||||
{{ render_field(report_form.reason, class_='form-control', maxlength=255) }}
|
||||
|
|
Loading…
Reference in a new issue