Closed ersanjay5991 closed 3 years ago
Hello @ersanjay5991
To suppress this warning try to update the core/urls.py
file as below:
urlpatterns = [
path('admin/', admin.site.urls), # Django admin route
path('admin' , admin.site.urls), # Django admin route # <-- REMOVE this line
path("", include("authentication.urls")), # Auth routes - login / register
path("", include("app.urls")) # UI Kits Html files
]
Thanks lot it work fine.
please update into your master branch