{% extends "adminpanel/base.html" %} {% block title %}Activity log — admin{% endblock %} {% block heading %}Activity log{% endblock %} {% block content %}

Activity

    {% for a in activity %}
  • {{ a.created_at|date:"j M Y · H:i" }}{% if a.user %} · {{ a.user.get_full_name|default:a.user.username }}{% endif %}

    {{ a.description }}

  • {% empty %}

    Nothing logged yet.

    {% endfor %}

Login history

{% for l in logins %} {% empty %}{% endfor %}
WhenAccountIPResult
{{ l.created_at|date:"j M Y · H:i" }}{{ l.username_tried }} {{ l.ip_address|default:"—" }} {% if l.successful %}Success{% else %}Blocked{% endif %}
No sign-ins recorded.
{% endblock %}