26 lines
583 B
HTML
26 lines
583 B
HTML
{% extends "base.html" %}
|
|
{% from "components/pagination.html" import Pagination %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<section v-cloak class="block-list">
|
|
<header class="block-list__header">
|
|
<h1 class="block-list__title">Activity History</h1>
|
|
</header>
|
|
|
|
<ul>
|
|
{% for event in audit_events %}
|
|
<li class="block-list__item">
|
|
{% autoescape false %}
|
|
{{ event | renderAuditEvent }}
|
|
{% endautoescape %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{{ Pagination(audit_events, 'atst.activity_history') }}
|
|
|
|
</section>
|
|
{% endblock %}
|