1👍
Your issue is:
class PostAdmin(admin.ModelAdmin):
...
does not have author
as a field, and it is a required field.
Now, when you are saving the model from the admin, author
field is NULL
and according to the database it is not nullable. Hence the error.
Now, to fix it, add author
as a field in the Post
admin
- [Answer]-Getting 'GET' parameter in views.py
- [Answer]-Video.js scub bar not working?
- [Answer]-Says Celery not installed when it is
Source:stackexchange.com