mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
17 lines
447 B
HTML
17 lines
447 B
HTML
{% extends "packages/package_base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Audit Log") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="mt-0">{{ self.title() }}</h2>
|
|
|
|
{% 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 %}
|