1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

newforms-admin: Fixed a bug where has_add_permission wasn't in the admin's add user context.

git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6804 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2007-12-01 19:33:49 +00:00
parent b897adb8a4
commit 2d98a83918

View File

@ -33,6 +33,7 @@ def user_add_stage(request):
'is_popup': '_popup' in request.REQUEST,
'add': True,
'change': False,
'has_add_permission': True,
'has_delete_permission': False,
'has_change_permission': True,
'has_file_field': False,