Files
atst/templates/fragments/audit_events_log.html
2019-01-09 13:16:03 -05:00

18 lines
448 B
HTML

{% from "components/pagination.html" import Pagination %}
<section class="block-list">
<header class="block-list__header">
<h1 class="block-list__title">{{ "audit_log.header_title" | translate }}</h1>
</header>
<ul>
{% for event in audit_events %}
<li class="block-list__item">
{% autoescape false %}
{{ event | renderAuditEvent }}
{% endautoescape %}
</li>
{% endfor %}
</ul>
</section>