2021-07-24 04:56:43 +02:00
|
|
|
{% extends "packages/package_base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
2022-01-08 00:27:00 +01:00
|
|
|
{{ _("Audit Log") }}
|
2021-07-24 04:56:43 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-01-08 00:27:00 +01:00
|
|
|
<h2 class="mt-0">{{ self.title() }}</h2>
|
2021-07-24 04:56:43 +02:00
|
|
|
|
|
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
|
|
{% from "macros/audit_log.html" import render_audit_log %}
|
|
|
|
|
|
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
|
|
{{ render_audit_log(log, current_user) }}
|
|
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
|
|
{% endblock %}
|