26 lines
708 B
HTML
26 lines
708 B
HTML
{% extends "workspaces/base.html" %}
|
|
{% from "components/pagination.html" import Pagination %}
|
|
|
|
{% block workspace_content %}
|
|
|
|
<div v-cloak>
|
|
<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>
|
|
|
|
{{ Pagination(audit_events, 'workspaces.workspace_activity', workspace_id=workspace_id) }}
|
|
</div>
|
|
{% endblock %}
|