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