{% extends "sentry/bases/team.html" %} {% load url from future %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}Users | {{ team.name }} | {{ block.super }}{% endblock %} {% block bodyclass %}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • {% trans "Users" %}
  • {% endblock %} {% block main %}
    {% paginator tuser_list from request as tuser_list %} {% querystring from request without sort as sort_querystring %}
    {% if not tuser_list.paginator.objects %}

    {% blocktrans %}You dont seem to have any user data recorded. For more information on how to send this information consult your client's documentation.{% endblocktrans %}

    {% else %} {% for tuser in tuser_list.paginator.objects %} {% endfor %}
    {% trans "User" %} {% trans "Last Seen" %} {% trans "Events Seen" %}
    {% if tuser.email %}{{ tuser.email }}{% else %}{{ tuser.ident }}{% endif %} {{ tuser.last_seen|timesince }} {{ tuser.num_events|small_count }}
    {% endif %}
    {% endblock %}