{% extends 'layouts/two_pane_single.html' %} {% load i18n %} {% load bootstrap4 %} {% block content_main %}

{% trans 'Profile' %}

{% trans 'Basic information' %}

ID{{ request.user.id }}
{% trans 'Username' %}{{ request.user.username }}
{% trans 'Email address' %}{{ request.user.email }}
{% trans 'Full name' %}{{ request.user.get_full_name }}
{% trans 'Edit profile' as profile_edit_label %} {% url 'accounts:profile-edit' as profile_edit_url %} {% bootstrap_button profile_edit_label href=profile_edit_url %}

{% trans 'Set language' %}

{% csrf_token %} {% bootstrap_form language_form layout='inline' %}   {% trans 'Apply' as apply_label %} {% bootstrap_button apply_label 'submit' %}
{% endblock %}