Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERRORS: <class 'store.admin.CategoryAdmin'>: (admin.E029) The value of 'prepopulated_fields["slug"]' must be a list or tuple. #15

Open
AAdewunmi opened this issue Nov 24, 2023 · 0 comments

Comments

@AAdewunmi
Copy link

Hi,

Tried to create super user python manage.py createsuperuser and got the following error:

ERRORS:
<class 'store.admin.CategoryAdmin'>: (admin.E029) The value of 'prepopulated_fields["slug"]' must be a list or tuple.
<class 'store.admin.ProductAdmin'>: (admin.E029) The value of 'prepopulated_fields["slug"]' must be a list or tuple.

Here is a fix:

prepopulated_fields = {'slug': ('name,')}
prepopulated_fields = {'slug': ['name']}

prepopulated_fields = {'slug': ('title,')}
prepopulated_fields = {'slug': ['title']}

For an explanation on why you must use either a list or tuple, see Django Admin Documentation:

ModelAdmin.prepopulated_fields

😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant