{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% load crispy_forms_tags %} {% load authnames %} {% block breadcrumbs %}
  • {% trans "Manage" %}
  • {% trans "Users" %}
  • {% endblock %} {% block content %} {% if users is not None %} {% for user in users %}
    {% trans "Edit" %}

    {{ user.username }} — {{ user.full_name }} — {{ user.email }}

    {% for social in user.social_auth.all %} {% endfor %} {% with billings=user.billing_set.all %} {% if billings %} {% include "billing/list.html" with objects=billings hide_table_tag=1 show_expiry=1 show_removal=1 %} {% endif %} {% endwith %} {% for log in user.auditlog_set.order %} {% endfor %}
    {% trans "Last login" %}{{ user.last_login|date:"DATETIME_FORMAT" }}
    {% trans "Date joined" %}{{ user.date_joined|date:"DATETIME_FORMAT" }}
    {% trans "Current user identities" %}
    {% trans "Identity" %} {% trans "User ID" %} {% trans "E-mail" %}
    {% auth_name social.provider ' ' %} {{ social.uid }} {% for verified in social.verifiedemail_set.all %}{{ verified.email }}{% endfor %}
    {% trans "User billings" %}
    {% trans "Audit log" %}
    {% trans "When" %} {% trans "Account activity" %} {% trans "IP address" %} {% trans "User agent" %}
    {{ log.timestamp|date:"DATETIME_FORMAT" }} {{ log.get_message }} {{ log.address }} {{ log.user_agent }}
    {% empty %} {% trans "No matching user found." as msg %} {% show_message "warning" msg %} {% endfor %} {% endif %}

    {% trans "Check user access" %}

    {{ form|crispy }}
    {% endblock %}