Changes between Version 4 and Version 5 of Ticket #33955


Ignore:
Timestamp:
Aug 24, 2022, 2:25:08 PM (21 months ago)
Author:
Greg Kaleka
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33955 – Description

    v4 v5  
    44
    551. Create a new project with Django 4.1
    6 2. Run `manage.py migrate` and `manage.py createsuperuser`
    7 3. Include `django.contrib.admindocs` in your installed apps
    8 4. Add the urls to your urlconf: `path("admindocs/", include("django.contrib.admindocs.urls"))`
     62. Include `django.contrib.admindocs` in your installed apps
     73. Add the urls to your urlconf: `path("admindocs/", include("django.contrib.admindocs.urls"))`
     84. Run `manage.py migrate` and `manage.py createsuperuser`
    995. Go to `localhost:8000/admindocs/views/` and click on any view to go to the `ViewDetailView`
    1010
Back to Top