Re: Cannot Access Django Admin

2018-04-16 Thread Álmos Kovács
Please also check in the settings.py that admin is in your apps list. 2018-04-16 13:50 GMT+02:00 Chasan KIOUTSOUK MOUSTAFA : > Also make sure, you have the following configuration on *urls.py* > > *from django.contrib import admin > from django.urls import path, include > > urlpatterns = [ >

Re: Cannot Access Django Admin

2018-04-16 Thread Chasan KIOUTSOUK MOUSTAFA
Also make sure, you have the following configuration on *urls.py* *from django.contrib import admin from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), ]* On Mon, Apr 16, 2018 at 2:48 PM, Chasan KIOUTSOUK MOUSTAFA < chas...@gmail.com> wrote: > Try this o

Re: Cannot Access Django Admin

2018-04-16 Thread Chasan KIOUTSOUK MOUSTAFA
Try this one with trailing slash /admin/ It should work. On Mon, Apr 16, 2018 at 2:44 PM, David Corcoran wrote: > I'm trying to locate the Django Admin access. I've tried these two URL > configs: > > /admin > > /adminlogin/?next=/admin > > The response returned at these pages is "DoesNotExist".