Remove ununsed password change and form templates

This commit is contained in:
Roberto Rosario
2015-04-01 13:36:31 -04:00
parent c44362b257
commit c88d8061e9
3 changed files with 1 additions and 17 deletions

View File

@@ -1,9 +0,0 @@
{% extends 'appearance/base.html' %}
{% load i18n %}
{% block title %} :: {% trans 'Password change' %}{% endblock %}
{% block content %}
<h2>{% trans 'Your password has been successfully changed.' %}</h2>
{% endblock %}

View File

@@ -1,7 +0,0 @@
{% extends 'appearance/generic_form.html' %}
{% load i18n %}
{% block title %} :: {% trans 'Password change' %}{% endblock %}
{% block form_title %}{% trans 'Password change' %}{% endblock %}

View File

@@ -293,7 +293,7 @@ def password_change_view(request):
return password_change(
request,
extra_context=context,
template_name='appearance/password_change_form.html',
template_name='appearance/generic_form.html',
post_change_redirect=reverse('common:password_change_done'),
)