mirror of
https://github.com/django/django.git
synced 2024-12-26 02:56:25 +00:00
Removing the old url resolution method in contrib.auth.admin.UserAdmin which was deprecated in Django 1.1
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16621 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
283526a5a6
commit
0e3d8bcb26
@ -55,15 +55,6 @@ class UserAdmin(admin.ModelAdmin):
|
|||||||
ordering = ('username',)
|
ordering = ('username',)
|
||||||
filter_horizontal = ('user_permissions',)
|
filter_horizontal = ('user_permissions',)
|
||||||
|
|
||||||
def __call__(self, request, url):
|
|
||||||
# this should not be here, but must be due to the way __call__ routes
|
|
||||||
# in ModelAdmin.
|
|
||||||
if url is None:
|
|
||||||
return self.changelist_view(request)
|
|
||||||
if url.endswith('password'):
|
|
||||||
return self.user_change_password(request, url.split('/')[0])
|
|
||||||
return super(UserAdmin, self).__call__(request, url)
|
|
||||||
|
|
||||||
def get_fieldsets(self, request, obj=None):
|
def get_fieldsets(self, request, obj=None):
|
||||||
if not obj:
|
if not obj:
|
||||||
return self.add_fieldsets
|
return self.add_fieldsets
|
||||||
|
Loading…
Reference in New Issue
Block a user