{% extends 'base-apply.html' %} {% load i18n users_tags %} {% block title %}Account{% endblock %} {% block content %}

{% trans "Welcome" %} {{ user }}

{% trans "Go to my dashboard" %}

Profile

{% csrf_token %} {% for field in form %} {% include "forms/includes/field.html" %} {% endfor %}
{% if show_change_password and user.has_usable_password and not backends.associated %}

{% trans "Change password" %}

{% trans "Update password" %}

{% trans "Account security" %}

{% trans "Two-factor authentication settings" %}

{% endif %}
{% if swappable_form %}

{% trans "Become" %}:

{{ swappable_form.media }} {% csrf_token %} {% for field in swappable_form %} {% include "forms/includes/field.html" %} {% endfor %}
{% endif %} {# Remove the comment block tags below when such need arises. e.g. adding new providers #} {% comment %} {% can_use_oauth as show_oauth_link %} {% if show_oauth_link %} {% trans "Manage OAuth" %} {% endif %} {% endcomment %}
{% endblock %}