Display audit logs for current workspace
This commit is contained in:
@@ -1 +0,0 @@
|
||||
<h1>Activity Log for Workspace {{workspace_name}}</h1>
|
23
templates/workspaces/activity/index.html
Normal file
23
templates/workspaces/activity/index.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% extends "workspaces/base.html" %}
|
||||
|
||||
{% 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>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user