{% extends "base.html" %} {% load static gravatar site_settings %} {% block title %}{{ block.super }} - Profile{% endblock %} {% block styles %} {{ block.super }} {{ site_globals.user_css|load_custom_css|safe }} {% endblock %} {% block primary_content %}
{% block profile_header %}
{% endblock %} {% block profile_sections %}

Name

{% block name_parameters %}
First Name:
{{ user.first_name|default:"Not Given" }}
Last Name:
{{ user.last_name|default:"Not Given" }}
{% endblock %}

Email

{% block email_parameters %}
Email:
{{ user.email|default:"Not Given" }}
{% endblock %}

Credentials

{% block credential_parameters %}
Username:
{{ user.username }}
{% if user.has_usable_password %}
Password:
********
{% endif %}
2-Step Verification:
{% if has_mfa %}Enabled{% else %}Not Enabled{% endif %}
{% endblock %}
{% if backends.backends %}

Single Sign On

{% block social_parameters %}
Connected:
{% if backends.associated %} {% include 'tethys_portal/user/social_labels.html' with backends=backends.associated %} {% else %}
None
{% endif %}
Not Connected:
{% if backends.not_associated %} {% include 'tethys_portal/user/social_labels.html' with backends=backends.not_associated %} {% else %}
None
{% endif %}
{% endblock %}
{% endif %}

API Key

Token:
{% if show_user_token_mfa %}
{{ user_token }}
{% else %}
Enable 2-Step verification to view token
{% endif %}

Account

{% block account_parameters %}
Member Since:
{{ user.date_joined|date:"F j, Y" }}
Status:
{% if user.is_active %}Active{% else %}Inactive{% endif %}
{% block extend_account_parameters %} {% endblock %}
{% endblock %}

Workspace

{% block storage_parameters %}
Storage Summary:
{{ current_use }} of {{ quota|default:"∞" }}
{% block extend_storage_parameters %} {% endblock %}
{% endblock %}
{% endblock %}
{% endblock %}