{% extends "base.html" %} {% block title %}Settings Audit Log - DocuElevate{% endblock %} {% block content %}

Settings Audit Log

Chronological record of all configuration changes made via the settings UI. Sensitive values are masked. Use the rollback button to revert any setting to a prior value.

Back to Settings
{% if entries %}
{% for entry in entries %} {% endfor %}
When Changed By Setting Key Action Old Value New Value Rollback
{{ entry.changed_at }} {{ entry.changed_by }} {{ entry.key }} {% if entry.action == 'delete' %} delete {% elif entry.action == 'rollback' %} rollback {% else %} update {% endif %} {% if entry.old_value %} {{ entry.old_value }} {% else %} {% endif %} {% if entry.new_value %} {{ entry.new_value }} {% else %} — (deleted) {% endif %}
{% else %}

No configuration changes recorded yet.

Changes you make on the Settings page will appear here.

{% endif %}
{% endblock %}