{% extends 'base.html'%} {% load i18n %} {% comment %} This Template is responsible for rendering the NewUserForm form and collect the basic information about user after the email verification process. {% endcomment %} {% block content %}

{% trans "Basic user information" %}

{% trans "In order to complete the registration process please fill the requested fields." %}

{% csrf_token %} {% if msg %}

{{ msg }}

{% endif %} {% for field in form %} {% if not field.is_hidden %} {{ field }}{% if field.erros %}{% endif %} {% else %} {{ field }} {% endif %} {% endfor %}
{{ user.username }}
{{ user.email }}
asdasd{{ field.errors }}
{{ form.media }} {% endblock content %}