{% extends "tethys_portal/user/profile.html" %} {% load django_bootstrap5 %} {% block title %}{{ block.super }} - User Settings{% endblock %} {% block styles %} {{ block.super }} {% endblock %} {% block edit_button %} {% endblock %} {% block name_parameters %}
{% bootstrap_field form.first_name layout='horizontal' label_class='ps-0 fw-bold' horizontal_label_class='col-sm-4' horizontal_field_class='col-sm-8 ps-0' %}
{% bootstrap_field form.last_name layout='horizontal' label_class='ps-0 fw-bold' horizontal_label_class='col-sm-4' horizontal_field_class='col-sm-8 ps-0' %}
{% endblock %} {% block email_parameters %}
{% bootstrap_field form.email layout='horizontal' label_class='ps-0 fw-bold' horizontal_label_class='col-sm-4' horizontal_field_class='col-sm-8 ps-0' %}
{% endblock %} {% block credential_parameters %}
{% if user.has_usable_password %}
Password:
Change Password
2-Step Verification:
Configure
{% endif %}
{% endblock %} {% block social_parameters %}
Connected:
{{association.provider}} {% if backends.associated %} {% if user.has_usable_password or backends.associated|length > 1 %} {% include 'tethys_portal/user/social_labels.html' with backends=backends.associated action='disconnect' %} {% else %} {% include 'tethys_portal/user/social_labels.html' with backends=backends.associated %} {% endif %} {% else %}
None
{% endif %}
Not Connected:
{% if backends.not_associated %} {% include 'tethys_portal/user/social_labels.html' with backends=backends.not_associated action='connect' %} {% else %}
None
{% endif %}
{% endblock %} {% block extend_account_parameters %}
Delete Account:
Delete Account
{% endblock %} {% block extend_storage_parameters %}
Manage Storage:
Manage Storage
{% endblock %} {% block profile_sections %}
{% csrf_token %} {{ block.super }}
{% endblock %}