1👍
✅
Encountering exactly this problem, I was able to resolve it by removing
admin.autodiscover()
Django 1.7 automatically discovers the admin files in the new app loading functionality and I guess having this messes with the loading order.
5👍
Make sure you read the documentation and register modeltranslation
before django.contrib.admin
. That solved the issue for me.
INSTALLED_APPS = (
...
'modeltranslation',
'django.contrib.admin',
....
)
Hope this helps.
- [Django]-Django allauth – no verification email for social users
- [Django]-How can I limit http method to a Django REST api
Source:stackexchange.com