{% extends "base_content.html" %} {% load i18n %} {% block content %} {% ifequal action_type "change" %}
{% trans "Please correct errors below:" %}
{% if form.email.errors %}
{{ form.email.errors|join:", " }}
{% endif %}
{% if form.password.errors %}
{{ form.password.errors|join:", " }}
{% endif %}
{{ msg }}
{% endif %}