[Django]-Django – trouble with migrations and modeltranslations

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.

Leave a comment