django-admin-views icon indicating copy to clipboard operation
django-admin-views copied to clipboard

Easily link custom admin views and direct URLs into the Django admin

Results 17 django-admin-views issues
Sort by recently updated
recently updated
newest added

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...

Trying the example in the REDME, I'm experiencing some problem. I get duplicated links in the admin dashboard for the admin_views. ![screen shot 2017-07-21 at 11 02 57](https://user-images.githubusercontent.com/23698787/28456975-8e7ae2c2-6e04-11e7-85f5-b6733930a6b2.png) 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