mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
17 lines
397 B
HTML
17 lines
397 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Audit Log
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<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) }}
|
|
{{ render_audit_log(log, current_user) }}
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
{% endblock %}
|