{% extends "base.html" %} {% block title %}{{ _("Password changed") }}{% end block %} {% block body %}
{% if current_user == user %}

{{ _("Your password has successfully been changed.") }}

{% else %}

{{ _("The password of %s has successfully been changed.") % user.realname }}

{% end %}
{% end %}