Automatic audit logging using SQLA events

This commit is contained in:
richard-dds
2018-09-19 11:41:27 -04:00
parent b7a33de29d
commit ddc2e2fad7
27 changed files with 346 additions and 26 deletions

22
templates/audit_log.html Normal file
View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block content %}
<div class="panel">
<section class="block-list">
<header class="block-list__header">
<h1 class="block-list__title">Acitivity History</h1>
</header>
<ul>
{% for event in audit_events %}
<li class="block-list__item">{{ event }}</li>
{% endfor %}
</ul>
</section>
</div>
{% endblock %}