{% extends "dashboard/base.html" %} {% load i18n %} {% comment %} This Template is responsible for rendering the EditBasicProfile and collect the basic information about user and change the exists data. {% endcomment %} {% block content %}

{% trans "Edit Profile" %}

{% 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}}
{{ field.label_tag }}:asdasd{{ field.errors }}
{{ form.media }} {% endblock content %}