{% extends 'global.html'%} {% load i18n %} {% load widget_tweaks %} # {% block title %}{% trans 'Edit Explorer profile' %}{% endblock %} {% block maincontent %}
{% trans 'Edit Explorer profile' %} {% csrf_token %}
{% include 'partials/form/inputField.html' with field=explorer_user_change_form.username %}
{% include 'partials/form/inputField.html' with field=explorer_user_change_form.email %}
{% include 'partials/form/inputField.html' with field=explorer_user_change_form.first_name %}
{% include 'partials/form/inputField.html' with field=explorer_user_change_form.last_name %}
{% include 'partials/form/inputField.html' with field=explorer_change_form.bio %}
{% if explorer_image_url %}
{% endif %}
{% include 'partials/form/inputField.html' with field=explorer_change_form.profile_image %}
{% trans 'Update' as action %}
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
{% endblock maincontent %}