{% extends "base.html" %} {% load static %} {% block title %}Account Dashboard{% endblock %} {% block content %}
| Time | User | Action | Details | IP Address | Status |
|---|---|---|---|---|---|
|
{{ activity.timestamp|date:"M d, Y" }}
{{ activity.timestamp|time:"H:i" }}
|
{% if activity.user.profile.avatar %}
{{ activity.user.first_name|first|upper }}
{% endif %}
{{ activity.user.get_full_name|default:activity.user.username }}
{{ activity.user.email }}
|
{{ activity.action }} | {{ activity.details|default:"-" }} |
{{ activity.ip_address|default:"-" }}
|
{{ activity.status }} |
User activity will appear here once users start interacting with the system.