Changes between Version 1 and Version 2 of Ticket #32150


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32150 – Description

    v1 v2  
     1
     2
    13I'm trying to install the Admin Docs:
    24my urls:
    35
    4 ```
     6{{{
    57urlpatterns = [
    68    # ADMIN
     
    911    # rest of urls...
    1012]
    11 ```
     13}}}
    1214installed apps:
    1315
    14 ```
     16{{{
    1517installed_apps = [
    1618    'django.contrib.admindocs',
     
    1820   # rest of apps
    1921]
    20 ```
     22}}}
    2123when I try to access the docs from the admin I get the following error:
    2224
    23 ```
     25{{{
    2426NoReverseMatch at /admin/doc/
    2527Reverse 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}}}
    2729
    2830all the model's admins in my app (including users and auth token) reside in my custom consumer admin,
Back to Top