10 lines
265 B
HTML
10 lines
265 B
HTML
{% extends "base.html" %}
|
|
{% from "components/pagination.html" import Pagination %}
|
|
|
|
{% block content %}
|
|
<div v-cloak>
|
|
{% include "fragments/audit_events_log.html" %}
|
|
{{ Pagination(audit_events, url_for('ccpo.activity_history'))}}
|
|
</div>
|
|
{% endblock %}
|