When the default url http://127.0.0.1:8000/
is given then the app is able to get the default page but when I tried to connect with the pages using
http://127.0.0.1:8000/customer/
I'm getting this error as a traceback
Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/customer/
Using the URLconf defined in crm.urls, Django tried these URL patterns, in this order:
admin/
The current path, customer/, didn’t match any of these.
You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
Here is my code crm/urls.py--->
from django.contrib import admin
from django.urls import path,include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('accounts.urls')),
]
now accounts/urls.py--->
from django.urls import path
from . import views
urlpatterns = [
path('', views.home,name="ShopHome"),
path('products/', views.products,name="ProductsHome"),
path('customer/', views.customer,name="customerHome"),
]
Now accounts/view.py--->
from django.shortcuts import render
from django.http import HttpResponse
def home(request):
return HttpResponse('home')
def products(request):
return HttpResponse('products')
def customer(request):
return HttpResponse('customer')
and this is myinstalled apps in setting-->
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'accounts',
]
Please help me out guys I'm struck here for 2 days
You need to point to the
urls
of theaccounts
app without a leadingaccounts/
:otherwise you can access the customer view with:
but that is likely not what you want.