{% extends "principal.html" %} {% load i18n static %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block headertoolbar %}
{{user.first_name}} {{user.last_name}} {%if user.is_active%}{%for p in nombre_institucion %}{{p.nombre}}{%endfor%}{%endif%}
{%endblock%} {% block breadcrumbs %} {{ block.super }}
  • Cambiar Contraseña
  • {% endblock %} {% block title %}{% trans 'Password change' %}{% endblock %} {% block maincontent %}
    {% csrf_token %}
    {% if form.errors %}

    {% blocktrans count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

    {% endif %}
    Cambio de Contraseña:
    {{ form.old_password.errors }} {{ form.old_password }}
    {{ form.new_password1.errors }} {{ form.new_password1 }}
    {{ form.new_password2.errors }} {{ form.new_password2 }}

    {% endblock %}