Audit log view

move error logs to logs
Add links for new logs in header
This commit is contained in:
Aaron Kimbre
2022-02-12 15:30:43 -06:00
parent 24a398b89c
commit d77eaf16d1
5 changed files with 110 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'base.html.j2' %}
{% block title %}LOGS{% endblock %}
{% block content_before %}
LOGS - {{ config.APP_NAME }}
{% endblock %}
{% block content_override %}
<div class="bg-white mx-5 p-3 rounded">
<code>
{{ logs }}
</code>
</div>
{% endblock %}