{% extends "base.html" %} {% block title %}TapDB Audit{% endblock %} {% block content %}

Audit explorer

{% if audit.warning %}

{{ audit.warning }}

{% endif %}
{% for item in audit["items"] %} {% endfor %} {% if not audit["items"] %}{% endif %}
TimeEUIDOperationActorKindNameChange
{{ item.changed_at }} {{ item.euid }} {{ item.operation_type }} {{ item.changed_by or '-' }} {{ item.category or '-' }}/{{ item.type or '-' }}/{{ item.subtype or '-' }} {{ item.name or '-' }}
values
{{ {'old': item.old_value, 'new': item.new_value} | tojson(indent=2) }}
No matching audit entries.
{% endblock %}