10 lines
256 B
HTML
10 lines
256 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, 'atst.activity_history')}}
|
|
</div>
|
|
{% endblock %}
|