{% extends "sentry/admin/base.html" %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Manage Users" %} | {{ block.super }}{% endblock %} {% block breadcrumb %}
{% trans "Name" %} | {% trans "Joined" %} | {% trans "Last Login" %} | {% trans "Projects" %} |
---|---|---|---|
{% if user.first_name %}
{{ user.first_name }} ({{ user.email }})
{% else %}
{{ user.email }}
{% endif %}
{% if not user.is_active %}
inactive account
{% endif %}
{{ user.username }} |
{{ user.date_joined|date }} | {{ user.last_login|date }} | {{ user.num_projects }} |
{% trans "There are no active users in Sentry." %}
{% endif %} {% endblock %}