diff --git a/README.rst b/README.rst index b87dc63..96d5036 100644 --- a/README.rst +++ b/README.rst @@ -169,8 +169,8 @@ following to your ``urls.py`` .. code-block:: python urlpatterns = [ - path('admin/', admin.site.urls), # normal admin path('admin/defender/', include('defender.urls')), # defender admin + path('admin/', admin.site.urls), # normal admin # your own patterns follow... ] diff --git a/exampleapp/urls.py b/exampleapp/urls.py index 34f0045..097d7a8 100644 --- a/exampleapp/urls.py +++ b/exampleapp/urls.py @@ -7,8 +7,8 @@ from django.conf.urls.static import static admin.autodiscover() urlpatterns = [ - re_path(r"^admin/", admin.site.urls), re_path(r"^admin/defender/", include("defender.urls")), + re_path(r"^admin/", admin.site.urls), ]