#285 append tabs to password-change-view
This commit is contained in:
parent
68215e78d6
commit
07a0d42577
@ -30,6 +30,7 @@ from django.db import transaction
|
|||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from django.contrib.auth.decorators import login_required
|
from django.contrib.auth.decorators import login_required
|
||||||
from django.contrib.auth.models import User, Group
|
from django.contrib.auth.models import User, Group
|
||||||
|
from django.contrib.auth.forms import PasswordChangeForm
|
||||||
from django.core.urlresolvers import reverse
|
from django.core.urlresolvers import reverse
|
||||||
from django.shortcuts import redirect
|
from django.shortcuts import redirect
|
||||||
from django.utils.translation import ugettext as _, ungettext
|
from django.utils.translation import ugettext as _, ungettext
|
||||||
@ -359,6 +360,28 @@ def user_settings(request):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
@template('participant/password_change.html')
|
||||||
|
def user_settings_password(request):
|
||||||
|
"""
|
||||||
|
Edit own password.
|
||||||
|
"""
|
||||||
|
if request.method == 'POST':
|
||||||
|
form = PasswordChangeForm(request.user, request.POST)
|
||||||
|
if form.is_valid():
|
||||||
|
form.save()
|
||||||
|
messages.success(request, _('Password successfully changed.'))
|
||||||
|
return redirect(reverse('user_settings'))
|
||||||
|
else:
|
||||||
|
messages.error(request, _('Please check the form for errors.'))
|
||||||
|
else:
|
||||||
|
form = PasswordChangeForm(user=request.user)
|
||||||
|
|
||||||
|
return {
|
||||||
|
'form': form,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@permission_required('participant.can_manage_participant')
|
@permission_required('participant.can_manage_participant')
|
||||||
@template('participant/import.html')
|
@template('participant/import.html')
|
||||||
def user_import(request):
|
def user_import(request):
|
||||||
|
@ -69,9 +69,7 @@ urlpatterns += patterns('',
|
|||||||
),
|
),
|
||||||
|
|
||||||
url(r'^usersettings/changepassword/$',
|
url(r'^usersettings/changepassword/$',
|
||||||
'django.contrib.auth.views.password_change',
|
'openslides.participant.views.user_settings_password',
|
||||||
{'template_name': 'participant/password_change.html',
|
|
||||||
'post_change_redirect': '/usersettings/'},
|
|
||||||
name='password_change',
|
name='password_change',
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user