{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

🚨 SOS login signs you in as the selected user. You will have their full permissions inside the product. Every action is recorded against their account, not yours. Use it to reproduce and diagnose — avoid making changes on their behalf.
{% if query %}

Showing {{ users|length }} of {{ total_count }} matching user{{ total_count|pluralize }}. {% if truncated %}Result list is capped at {{ limit }} — refine your search to see the rest.{% endif %}

{% for user in users %} {% empty %} {% endfor %}
Email Name Organization Role Action
{{ user.email }} {{ user.name|default:"—" }} {{ user.organization.name|default:"—" }} {{ user.organization_role|default:"—" }}
{% csrf_token %}
No active users match “{{ query }}”.
{% else %}

Search for a user above to start an SOS session.

{% endif %} {% endblock %}