mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 15:26:56 +02:00

Condense the table, vertically align the text inside rows, use a bootstrap styled select, group it together with the review button and shrink it down a little.
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
{% extends "layout.html" %}
|
|
{% 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 table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Reported by</th>
|
|
<th>Torrent</th>
|
|
<th>Reason</th>
|
|
<th>Date</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for report in reports.items %}
|
|
<tr class="reports-row">
|
|
<td>{{ report.id }}</td>
|
|
<td>
|
|
<a href="{{ url_for('view_user', user_name=report.user.username) }}">{{ report.user.username }}</a>
|
|
</td>
|
|
<td>
|
|
<a href="{{ url_for('view_torrent', torrent_id=report.torrent.id) }}">{{ report.torrent.display_name }}</a>
|
|
</td>
|
|
<td>{{ report.reason }}</td>
|
|
<td>{{ report.created_time }}</td>
|
|
<td style="width: 180px">
|
|
<form method="post">
|
|
{{ report_action.csrf_token }}
|
|
{{ report_action.torrent(value=report.torrent.id) }}
|
|
{{ report_action.report(value=report.id) }}
|
|
<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>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class=pagination>
|
|
{% from "bootstrap/pagination.html" import render_pagination %}
|
|
{{ render_pagination(reports) }}
|
|
</div>
|
|
{% endblock %}
|