In your urls.py you use '/hello' but in your browser you type '/home'.
On Sat, 15 Apr 2023 at 06:07, lalit upadhyay <upadhyaylalit32@gmail.com> wrote:
I have copied my code here.
Plz fix this error:
view.pyfrom django.http import HttpResponse
def hello_delhi_capitals(request):
return HttpResponse('Hello Delhi Capitals!')myproject/urls.py--from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', include('myapp.urls')),
]myapp/urls.pyfrom django.urls import path
from .views import hello_delhi_capitals
urlpatterns = [
path('hello/', hello_delhi_capitals, name='hello_delhi_capitals'),
]
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b157258f-6697-4bd7-81c7-48e425b4a1edn%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFKhtoTQB506MC1OwxvHhT23R5kK-0uC5cxcDm3YS3Q6SYM-Pg%40mail.gmail.com.
No comments:
Post a Comment