theatlantic / django-nested-admin

Django admin classes that allow for nested inlines
http://django-nested-admin.readthedocs.org/
Other
715 stars 99 forks source link

Better documentation on how to install in Django 3.0 #166

Closed fkellner closed 4 years ago

fkellner commented 4 years ago

The documentation states that in order to include your app, one needs to add the following to urls.py:

# urls.py

urlpatterns = patterns('',
    # ...
    url(r'^nested_admin/', include('nested_admin.urls')),
)

This does not work in Django 3 for the following reasons:

Also, one needs to define a STATIC_ROOT in order to be able to execute $ python manage.py collectstatic as requested in the documentation . Even if the error message is pretty helpful in this case, it would still be nice to mention it somewhere.

Because personally, I do not need all the great features that you have over other nested solutions, I will be using something simpler which only needs installing as a django application (so no pressure from my side to do anything).

Other Django 3 beginners, however, might be thankful if you could find the time to include better documentation on how to install your app.