django-admin-views
django-admin-views copied to clipboard
Easily link custom admin views and direct URLs into the Django admin
Hi @frankwiles, Just wondering if you are planning to support Django 2.0 with this package? We are using your project for one or two extra buttons in the admin and...
`admin_static` has been replaced by `static` in django 3.
+ template 'index.html' from Django 3.0.8 + admin_static -> static + code format
I made my app with django-admin site, in the user managment when i create an user and later going to the view for add the other fields. i want to...
This will solve issue #32
Trying the example in the REDME, I'm experiencing some problem. I get duplicated links in the admin dashboard for the admin_views.  this is...
Python 2.7 Django 1.8.12 Using a unicode string inside admin_views throws a UnicodeEncodeError: ``` admin_views = ( (u'комментарии Disqus', 'https://disqus.com/'), ) ```
-First Django is not using TEMPLATE_DIRS anymore its using the fallowing structure TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth',...
Trying to run admin_views_install_templates and it can't find my template directory. I have even added the --settings parameter, but it is not finding my 'templates' directory. python ./manage.py admin_views_install_templates --settings=perf_site.settingsWhich...
What do you think about change it: ``` url(regex=r'%s' % link[1], ``` to: ``` url(regex=r'^%s$' % link[1], ``` Code link: https://github.com/frankwiles/django-admin-views/blob/master/admin_views/admin.py#L34