Changes between Initial Version and Version 1 of Ticket #32150


Ignore:
Timestamp:
Oct 27, 2020, 8:46:23 AM (4 years ago)
Author:
Yovel Cohen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32150 – Description

    initial v1  
    11I'm trying to install the Admin Docs:
    22my urls:
    3 ```python
    43
     4```
    55urlpatterns = [
    66    # ADMIN
     
    1111```
    1212installed apps:
    13 ```python
     13
     14```
    1415installed_apps = [
    1516    'django.contrib.admindocs',
     
    1920```
    2021when I try to access the docs from the admin I get the following error:
    21 ```python
     22
     23```
    2224NoReverseMatch at /admin/doc/
    2325Reverse for 'app_list' with keyword arguments '{'app_label': 'auth'}' not found. 1 pattern(s) tried: ['admin/(?P<app_label>consumer_api|users|authtoken)/$']
    2426```
     27
    2528all the model's admins in my app (including users and auth token) reside in my custom consumer admin,
    2629not sure if it is related to the issue or not
Back to Top