{% load unfold %} {% if recent_users %}
{% for user in recent_users %}
{% include 'admin/components/user_avatar.html' with name=user.username color='blue' size='8' %}

{{ user.username }}

{{ user.email }}

{% include 'admin/components/status_badge.html' with status=user.is_active|yesno:'active,inactive' %} {{ user.date_joined|date:"M d, Y" }}
{% endfor %}
{% else %}
history

No recent activity available

{% endif %}