{% extends 'base.html' %} {% load static %} {% block title %}Action Log - {{ customer.customer_id }}{% endblock %} {% block content %}

Action Log - {{ customer.display_name }} ({{ customer.customer_id }})

Back to Customer
{% for log in page_obj %} {% empty %} {% endfor %}
Date/Time Action Description Performed By IP Address Reference
{{ log.created_at|date:"Y-m-d H:i:s" }} {{ log.get_action_type_display }} {% if log.system_action %} (Auto) {% endif %} {{ log.description }} {% if log.old_value or log.new_value %}
{% if log.old_value %} From: {{ log.old_value|truncatechars:50 }} {% endif %} {% if log.new_value %} To: {{ log.new_value|truncatechars:50 }} {% endif %} {% endif %}
{% if log.performed_by %} {{ log.performed_by.get_full_name|default:log.performed_by.username }} {% else %} System {% endif %} {{ log.ip_address|default:"-" }} {{ log.reference_id|default:"-" }}
No actions logged for this customer.
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}