atst/templates/audit_log/audit_log.html

26 lines
626 B
HTML

{% extends "base.html" %}
{% from "components/pagination.html" import Pagination %}
{% block content %}
<div v-cloak>
<section 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>
</section>
{{ Pagination(audit_events, 'atst.activity_history') }}
</div>
{% endblock %}