2019-09-17 23:10:44 +08:00
|
|
|
{% extends 'user.base' %}
|
|
|
|
|
|
|
|
{% block title %}{{ trans('general.my-reports') }}{% endblock %}
|
2020-01-21 11:07:20 +08:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body p-0">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{ trans('front-end.report.tid') }}</th>
|
|
|
|
<th>{{ trans('front-end.report.reason') }}</th>
|
|
|
|
<th>{{ trans('front-end.report.status-title') }}</th>
|
|
|
|
<th>{{ trans('front-end.report.time') }}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for report in reports %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{ report.tid }}
|
2020-08-21 23:10:14 +08:00
|
|
|
<a href="{{ route('skinlib.show', {texture: report.tid}, false) }}" target="_blank">
|
2020-01-21 11:07:20 +08:00
|
|
|
<i class="fas fa-share"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>{{ report.reason }}</td>
|
|
|
|
<td>{{ trans('front-end.report.status')[report.status] }}</td>
|
|
|
|
<td>{{ report.report_at }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2020-03-30 09:38:05 +08:00
|
|
|
<div class="card-footer">
|
|
|
|
<div class="float-right">
|
|
|
|
{{ reports.links()|raw }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-21 11:07:20 +08:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|