diff --git a/lms/templates/registration/password_reset_complete.html b/lms/templates/registration/password_reset_complete.html index 702aa7b134..16d990431c 100644 --- a/lms/templates/registration/password_reset_complete.html +++ b/lms/templates/registration/password_reset_complete.html @@ -1,11 +1,14 @@ -{% extends "main_django.html" %} -{% load i18n %} +## mako -{% block title %} -{% trans "Your Password Reset is Complete" %} -{% endblock %} +<%! from django.utils.translation import ugettext as _ %> -{% block bodyextra %} +<%inherit file="../main.html"/> + +<%block name="title"> + ${_("Your Password Reset is Complete")} + + +<%block name="bodyextra"> -{% endblock %} + -{% block bodyclass %}view-passwordreset{% endblock %} +<%block name="bodyclass">view-passwordreset -{% block body %} +<%block name="body">
-

{% trans "Password Reset Complete" %}

+

${_("Password Reset Complete")}

    - {% blocktrans with link_start='' link_end='' %} - Your password has been reset. {{ link_start }}Sign in to your account.{{ link_end }} - {% endblocktrans %} + ${_( + "Your password has been reset. {start_link}Sign-in to your account.{end_link}" + .format(start_link='', end_link='') + )}
-{% endblock %} +