[Fixed]-Does Django v1.8 support `register_view` method of django-adminplus v0.3?

1👍

Upgrade to django-adminplus 0.4. If you look at the commit history, it looks like support for Django 1.7 and 1.8 was added after 0.3, which you are currently running.

The readme also explains that you need to use the SimpleAdminConfig with Django 1.7+, to prevent auto discovery.

INSTALLED_APPS = (
    # ...
    'django.contrib.admin.apps.SimpleAdminConfig',  # instead of 'django.contrib.admin'
    # ...
)

Leave a comment