{% extends "admin/index.html" %} {% load i18n staticfiles %} {% comment %} Copyright 2019 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block breadcrumbs %} {% endblock %} {% block content %} {% for account in accounts %}

Account: {{account}}

Personal data

Display name: {{account.displayname}}
OpenID identifier: {{account.openid_identifier}}
Creation date: {{account.date_created}}
Last login: {{account.last_login}}
Status: {{account.get_status_display}}
Last status change: {{account.date_status_set}}
Account active: {{account.is_active}}
Creation source: {{account.creation_source}}
Launchpad name: {{account.person_name}}

E-mail addresses

    {% for email in account.emailaddress_set.all %}
  1. {{email}} {% if email.is_preferred %}(preferred){% endif %}
  2. {% endfor %}

Access logs

    {% for authlog in account.authlog_set.all %}
  1. {{authlog}}
  2. {% endfor %}
{% endfor %} {% endblock %} {% block sidebar %}{% endblock %}