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>
+
+<%block name="bodyextra">
-{% endblock %}
+%block>
-{% block bodyclass %}view-passwordreset{% endblock %}
+<%block name="bodyclass">view-passwordreset%block>
-{% block body %}
+<%block name="body">
-{% endblock %}
+%block>