8 lines
271 B
Python
Executable File
8 lines
271 B
Python
Executable File
from django.shortcuts import redirect
|
|
from django.utils.translation import ugettext as _
|
|
from django.contrib import messages
|
|
|
|
def password_change_done(request):
|
|
messages.success(request, _(u'Your password has been successfully changed.'))
|
|
return redirect('home')
|