Changes between Version 1 and Version 2 of Ticket #32150
- Timestamp:
- Oct 27, 2020, 8:47:41 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32150 – Description
v1 v2 1 2 1 3 I'm trying to install the Admin Docs: 2 4 my urls: 3 5 4 ``` 6 {{{ 5 7 urlpatterns = [ 6 8 # ADMIN … … 9 11 # rest of urls... 10 12 ] 11 ``` 13 }}} 12 14 installed apps: 13 15 14 ``` 16 {{{ 15 17 installed_apps = [ 16 18 'django.contrib.admindocs', … … 18 20 # rest of apps 19 21 ] 20 ``` 22 }}} 21 23 when I try to access the docs from the admin I get the following error: 22 24 23 ``` 25 {{{ 24 26 NoReverseMatch at /admin/doc/ 25 27 Reverse for 'app_list' with keyword arguments '{'app_label': 'auth'}' not found. 1 pattern(s) tried: ['admin/(?P<app_label>consumer_api|users|authtoken)/$'] 26 ``` 28 }}} 27 29 28 30 all the model's admins in my app (including users and auth token) reside in my custom consumer admin,