{% extends 'core/base.html' %} {% load i18n material_form %} {% block page_title %}{% trans "Edit Your Profile" %}{% endblock %} {% block browser_title %}{% trans "Edit Your Profile" %}{% endblock %} {% block content %}
info {% blocktrans %} Please fill out at least ten fields of this profile form. You don't have to do this at one time, you can fill out just some of the fields and save the progress by clicking on 'Save'. Please pay attention on correct spelling and grammar. {% endblocktrans %}
{% csrf_token %} {{ additional_fields.management_form }}

{{ additional_fields.non_field_errors }}

{% form form=form %}{% endform %} {% for additional_field in additional_fields %} {% form form=additional_field %}{% endform %} {% endfor %} {% include "core/partials/save_button.html" %}
{% endblock content %}