Re: NOT DISPLAYING PAGE

2024-11-07 Thread sum abiut
*1. Project-Level urls.py Configuration:* Your project's urls.py currently includes: from django.contrib import admin from django.urls import path, include urlpatterns = [ path('land/', include('land.urls')), path('admin/', admin.site.urls), ] This setup routes any URL starting with lan

Re: NOT DISPLAYING PAGE

2024-11-07 Thread Kennedy Saavedra
HElllo my friend. In the url path for "pen" add "/" after pen. Try and lest us know. Successes and blessed colleague El jue, 7 nov 2024 a las 10:49, Heman Okumbo () escribió: > Hello everyone,my project is not displaying the page on the browser though > I've followed the Django project tutorial.

Re: NOT DISPLAYING PAGE

2024-11-07 Thread Jairaj Sahgal
Remove the slash / Just do localhost:8000/pen On Thu, 7 Nov 2024, 21:19 Heman Okumbo, wrote: > Hello everyone,my project is not displaying the page on the browser though > I've followed the Django project tutorial. > my project urls: > > > from django.contrib import admin > from django.urls impo

NOT DISPLAYING PAGE

2024-11-07 Thread Heman Okumbo
Hello everyone,my project is not displaying the page on the browser though I've followed the Django project tutorial. my project urls: from django.contrib import admin from django.urls import path, include urlpatterns = [ path('land/', include('land.urls')),path('admin/', admin.site.urls),]