contentdb/app/templates/admin/audit.html

17 lines
397 B
HTML
Raw Normal View History

2020-07-11 03:32:17 +02:00
{% extends "base.html" %}
{% block title %}
Audit Log
{% endblock %}
{% block content %}
<h1>Audit Log</h1>
2020-12-04 00:43:05 +01:00
{% from "macros/pagination.html" import render_pagination %}
2020-12-09 20:59:14 +01:00
{% from "macros/audit_log.html" import render_audit_log %}
2020-07-11 03:32:17 +02:00
2020-12-09 20:59:14 +01:00
{{ render_pagination(pagination, url_set_query) }}
{{ render_audit_log(log, current_user) }}
2020-12-04 00:43:05 +01:00
{{ render_pagination(pagination, url_set_query) }}
2020-07-11 03:32:17 +02:00
{% endblock %}