Add audit log to account settings page
This commit is contained in:
@@ -8,74 +8,9 @@ Audit Log
|
||||
<h1>Audit Log</h1>
|
||||
|
||||
{% from "macros/pagination.html" import render_pagination %}
|
||||
{% from "macros/audit_log.html" import render_audit_log %}
|
||||
|
||||
{{ render_pagination(pagination, url_set_query) }}
|
||||
|
||||
<div class="list-group mt-3">
|
||||
{% for entry in log %}
|
||||
<a class="list-group-item list-group-item-action"
|
||||
{% if entry.description %}
|
||||
href="{{ url_for('admin.audit_view', id=entry.id) }}">
|
||||
{% else %}
|
||||
href="{{ entry.url }}">
|
||||
{% endif %}
|
||||
|
||||
<div class="row {% if entry.severity == entry.severity.NORMAL %}text-muted{% endif %}">
|
||||
<div class="col-sm-auto text-center" style="width: 50px;"
|
||||
title="{{ _('Severity: %(sev)s.', sev=entry.severity.getTitle()) }}">
|
||||
{% if entry.severity == entry.severity.MODERATION %}
|
||||
<i class="fas fa-exclamation-triangle" style="color: yellow;"></i>
|
||||
{% elif entry.severity == entry.severity.EDITOR %}
|
||||
<i class="fas fa-users" style="color: #537eac;"></i>
|
||||
{% elif entry.severity == entry.severity.USER %}
|
||||
<i class="fas fa-user"></i>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="col-sm-2 text-muted">
|
||||
{% if entry.causer %}
|
||||
<img
|
||||
class="img-fluid user-photo img-thumbnail img-thumbnail-1"
|
||||
style="max-height: 22px;"
|
||||
src="{{ entry.causer.getProfilePicURL() }}" />
|
||||
|
||||
<span class="pl-2">{{ entry.causer.display_name }}</span>
|
||||
{% else %}
|
||||
<i>Deleted User</i>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="col-sm">
|
||||
{{ entry.title}}
|
||||
|
||||
{% if entry.description %}
|
||||
<i class="fas fa-paperclip ml-3"></i>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if entry.package %}
|
||||
<div class="col-sm-auto text-muted">
|
||||
<span class="pr-2">
|
||||
{{ entry.package.title }}
|
||||
</span>
|
||||
|
||||
<img
|
||||
class="img-fluid"
|
||||
style="max-height: 22px; max-width: 22px;"
|
||||
src="{{ entry.package.getThumbnailURL(1) }}" />
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
<div class="col-sm-auto text-muted">
|
||||
{{ entry.created_at | datetime }}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
{% else %}
|
||||
<p class="list-group-item"><i>No audit log entires.</i></p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% from "macros/pagination.html" import render_pagination %}
|
||||
{{ render_audit_log(log, show_view=True) }}
|
||||
{{ render_pagination(pagination, url_set_query) }}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user