{% extends 'activities/base.html' %} {% load static %} {% block title %}Activity Details - Ad-tlas{% endblock %} {% block page_title %}Activity Details{% endblock %} {% block page_description %}Detailed view of activity record{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if activity.action == 'login' %} {% elif activity.action == 'logout' %} {% elif activity.action == 'create' %} {% elif activity.action == 'update' %} {% elif activity.action == 'delete' %} {% elif activity.action == 'view' %} {% elif activity.action == 'security_event' %} {% else %} {% endif %}

{{ activity.get_action_display }}

{{ activity.description }}

{% if activity.success %} Success {% else %} Failed {% endif %} {% if activity.activity_type.is_security_related %} Security {% endif %}
{% if activity.activity_type.is_security_related %}
Security-Related Activity

This activity has been flagged as security-related and requires attention.

{% endif %} {% if not activity.success and activity.error_message %} {% endif %}
Basic Information
Activity Type
{{ activity.activity_type.name }}
Action
{{ activity.get_action_display }}
Status
{% if activity.success %} Successful {% else %} Failed {% endif %}
Created At
{{ activity.created_at|date:'F d, Y H:i:s' }} ({{ activity.created_at|timesince }} ago)
{% if activity.updated_at != activity.created_at %}
Updated At
{{ activity.updated_at|date:'F d, Y H:i:s' }}
{% endif %}
User & Session
User
{% if activity.user %}
{{ activity.user.get_full_name|default:activity.user.email|first|upper }}
{{ activity.user.get_full_name|default:activity.user.email }}
{% if activity.user.get_full_name %} {{ activity.user.email }} {% endif %}
{% else %} System {% endif %}
IP Address
{% if activity.ip_address %} {{ activity.ip_address }} {% else %} Not recorded {% endif %}
User Agent
{% if activity.user_agent %} {{ activity.user_agent|truncatechars:100 }} {% if activity.user_agent|length > 100 %} {% endif %} {% else %} Not recorded {% endif %}
Session Key
{% if activity.session_key %} {{ activity.session_key|truncatechars:20 }}... {% else %} Not recorded {% endif %}
{% if activity.content_object %}
Related Object
Object Type
{{ activity.content_type.model|title }}
Object ID
{{ activity.object_id }}
Object Representation
{{ activity.get_related_object_display }}
{% endif %} {% if activity.extra_data %}
Extra Data
{{ activity.extra_data|pprint }}
{% endif %}
Related Activities
{% if related_activities %}
{% for related_activity in related_activities %}
{{ related_activity.get_action_display }} {% if related_activity.id == activity.id %} Current {% endif %}

{{ related_activity.description }}

{{ related_activity.created_at|date:'M d, Y H:i' }}
{% if related_activity.success %} Success {% else %} Failed {% endif %} {% if related_activity.id != activity.id %} {% endif %}
{% endfor %}
{% else %}

No related activities found.

{% endif %}
Back to List
{% if perms.activities.delete_activity %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}