{% extends 'dashboard/base.html' %} {% block title %}Activity Log{% endblock %} {% block page_title %}Activity Log{% endblock %} {% block content %}
Recent Activity
{% if q %}Clear{% endif %}
{% for log in logs %} {% empty %} {% endfor %}
Time User Action IP Address
{{ log.timestamp|date:"M d, Y" }}
{{ log.timestamp|time:"H:i:s" }}
{% if log.user %}
{{ log.user.first_name|first|upper|default:log.user.username|first|upper }}
{{ log.user.get_full_name|default:log.user.username }}
{{ log.user.username }}
{% else %} System {% endif %}
{{ log.action }}
{% if log.details %}
{{ log.details }}
{% endif %}
{{ log.ip|default:"—" }}

No activity yet

{% if logs.has_other_pages %} {% endif %} {% endblock %}