{% extends "profiles/base.html" %} {% load i18n %} {% load profile_tags %} {% block title %}{% trans 'Password change successful' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% users_nav request.user user_this %} {% users_options request.user user_this %}

{% trans 'Password change successful' %}

{% if request.user.id != user_this.id %}

{% trans 'Password was changed for ' %} {{ user_this.username }}

{% else %}

{% trans 'Your password was changed.' %}

{% endif %}
{% endblock %}