mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00

* Admin log added * Add admin log to top bar * Fixed some admin log bugs * Remove comment_id column because comments die when they are killed * Fix tabs in admin log template * Fixed sort of admin logs to be created_time desc * Fix navbar wrapping to a new line when 992px <= width <= 1200px * Put reports and admin log in "Admin" dropdown Applied ./lint.sh fixes Fixed long lines * Updated log to be text instead of id based to account for future deletions * Small fix in log message formatting
34 lines
873 B
HTML
34 lines
873 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Admin Log :: {{ 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">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Moderator/Admin</th>
|
|
<th>Log</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for log in adminlog.items %}
|
|
<tr>
|
|
<td>{{ log.id }}</td>
|
|
<td>
|
|
<a href="{{ url_for('view_user', user_name=log.admin.username) }}">{{ log.admin.username }}</a>
|
|
</td>
|
|
<td><div markdown-text>{{ log.log }}</div></td>
|
|
<td>{{ log.created_time }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class=pagination>
|
|
{% from "bootstrap/pagination.html" import render_pagination %}
|
|
{{ render_pagination(adminlog) }}
|
|
</div>
|
|
{% endblock %}
|