django-messages icon indicating copy to clipboard operation
django-messages copied to clipboard

Sending group message failed under Django 2.2

Open davidchern opened this issue 5 years ago • 0 comments

The solution is, according the documents of Django and based on my test, in file admin.py, after line 104, you have to add such line:

obj.id = None

Since id and pk are equivalent, you have to set both into None to make it work with that mechanism.

davidchern avatar Jan 15 '20 09:01 davidchern