There are lots of issues with urls.pyPlease go through the django documents on how to write urls.py
Sent from Yahoo Mail on Android On Mon, 4 May 2020 at 23:39, Deepti sharma<sharmadeepti...@gmail.com> wrote: Hi, I have just started learning django and was trying to make a meeting planner project y folllowing a course.I updated the setting.py file to add website into Instaled_Apps. Then have written a function named welcome in views.pyFinally I added it's entry into urls.py fieBut when I run the server, I am getting following error on webpage: Page not found (404) | Request Method: | GET | | Request URL: | http://127.0.0.1:8000/ | Using the URLconf defined in meeting_planner.urls, Django tried these URL patterns, in this order: - admin/ - welcome.html/ The empty path 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. Can someone please help me with this? I am stuck. This is my code: (meeting_planner/website/views.py): from django.shortcuts import render from django.http import HttpRequest # Create your views here. def welcome(request): return HttpRequest("Welcome to the Meeting Planner Website!") (meeting_planner/meeting_planer/urls.py):from django.contrib import admin from django.urls import path from website import views from django.conf.urls import url,include from website.views import welcome urlpatterns = [ path('admin/', admin.site.urls), path('welcome.html', welcome) ] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/3d38a2c2-3449-4c2f-839e-244b9295f55d%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1203797502.769610.1588615897439%40mail.yahoo.com.