django-adminplus
django-adminplus copied to clipboard
Easily add custom views to the Django admin.
Django 4 breaks with Exception: ``` File "adminplus/sites.py", line 47, in get_urls from django.conf.urls import url ImportError: cannot import name 'url' from 'django.conf.urls' (django/conf/urls/__init__.py) ``` The cause is; `django.conf.urls.url()` was...
Thanks for writing AdminPlus, it is working very well. One small niggle is that it provides a section on the /admin/ titled "Custom Views" - How can I rename this...
Support Django 4, see #64
Hi, I'd love to see django 2.x get integrated. As far as I can tell there's a PR waiting from January 2018 https://github.com/jsocol/django-adminplus/pull/58 to support 1.10+ that just doesn't get...
In order for default `@admin.register` to work, you have to also set `admin.sites.site` like so: ``` admin.site = admin.sites.site = AdminSitePlus() ```
Hi, Just spent today integrating adminplus into our Django 1.8.7 site, found an issue where 3 of our admin screens went missing after the upgrade.Turns out they are all core...
Hello, don't work for me Django 1.11.9 and python3.5 but don't use virutalenv I follow your tutorial `File "/Users/joelalves/Library/Python/3.5/lib/python/site-packages/django/apps/config.py", line 120, in create mod = import_module(mod_path) File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/importlib/__init__.py", line 126,...
I've incorporated django-adminplus to my site and it's working great, however when running tests Django is not able to resolve my models. I see: > ImportError: cannot import name \...
If a URL contains parameters, don't auto-show it. I would think just looking for `'('` in the URL would be enough.