{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "User Info" %}{% endblock %} {% block page_header %} {% include "horizon/common/_page_header.html" with title=_("Matching Nectar Users") %} {% endblock page_header %} {% block main %} {% include "user_info/field2.html" with value=object.id label="User ID" %} {% include "user_info/field2.html" with value=object.displayname label="Full name" %} {% include "user_info/field2.html" with value=object.email label="Email" %} {% include "user_info/field2.html" with value=object.first_name label="First name" %} {% include "user_info/field2.html" with value=object.surname label="Family name" %} {% include "user_info/field2.html" with value=object.organisation label="Organisation" %} {% include "user_info/field2.html" with value=object.affiliation label="Affiliation" %} {% include "user_info/field2.html" with value=object.orcid label="ORCID" %} {% include "user_info/field2.html" with value=object.phone_number label="Phone Number" %} {% include "user_info/field2.html" with value=object.mobile_number label="Mobile number"%}

External IDs

{% for eid in object.external_ids %}
Last Login: {{eid.last_login|default:"Unknown" }}
{% endfor %}
{% endblock %}