﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32150	Admin Docs No reverse match error	Yovel Cohen	nobody	"I'm trying to install the Admin Docs:
my urls:

```
urlpatterns = [
    # ADMIN
    path('admin/', consumer_admin.urls),
    path('admin/doc/', include('django.contrib.admindocs.urls')),
    # rest of urls...
]
```
installed apps:

```
installed_apps = [
    'django.contrib.admindocs',
    'django.contrib.admin',
   # rest of apps
]
```
when I try to access the docs from the admin I get the following error:

```
NoReverseMatch at /admin/doc/
Reverse for 'app_list' with keyword arguments '{'app_label': 'auth'}' not found. 1 pattern(s) tried: ['admin/(?P<app_label>consumer_api|users|authtoken)/$']
```

all the model's admins in my app (including users and auth token) reside in my custom consumer admin, 
not sure if it is related to the issue or not

"	Bug	new	contrib.admindocs	3.0	Normal		Admin admin-docs docs ,reverse-url		Unreviewed	0	0	0	0	0	0
