{% extends 'sb_sync/base.html' %} {% block title %}Audit Trails - SB Sync Configuration{% endblock %} {% block page_title %}Audit Trails{% endblock %} {% block page_actions %}
{% endblock %} {% block content %}
Filter Audit Trail
{{ total_records }}
History Records
{{ model_choices|length }}
Tracked Models
{% for record in history_records %} {% if record.history_type == '+' %} {{ forloop.counter }} {% endif %} {% endfor %}
Created Records
{% for record in history_records %} {% if record.history_type == '~' %} {{ forloop.counter }} {% endif %} {% endfor %}
Modified Records
Audit Trail History
Showing the last 100 history records
{% if history_records %}
{% for record in history_records %} {% endfor %}
Timestamp User Model Action Record ID Changes Actions
{{ record.history_date|date:"M d, Y H:i:s" }}
{{ record.history_user.username|default:"System" }}
{{ record.history_type_display }} {% if record.history_type == '+' %} Created {% elif record.history_type == '~' %} Modified {% elif record.history_type == '-' %} Deleted {% endif %} {{ record.history_id }} {% if record.history_type == '~' and record.prev_record %} {% else %} N/A {% endif %}
{% else %}

No audit trail records found

History records will appear here when changes are made
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}