Welcome!

{% if user.is_anonymous %}

You are not currently logged in. Please click on the link below:

Sign-in

{% else %}

You are currently logged in as {{ user.username }} (logout).

Profile
username {{ user.username }}
email {{ user.email }}
first name {{ user.first_name }}
last name {{ user.last_name }}
date joined {{ user.date_joined }}
last login {{ user.last_login }}
{% for social_user in backends.associated %} {% for key, value in social_user.extra_data.items %} {% if key == "id_token" %} {% else %} {% endif %} {% endfor %}
{{ social_user.provider }}/{{ social_user.uid }} - extra data
{{ key }}'{{ value }}'
{{ value|pprint }}
{% endfor %}
{% endif %}