i have been trying to run this code but it doesn't show the "Hey, Welcome" in the views.py
myproject/myapp/views.py:
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("<h1>Hey, Welcome</h1>")
myproject/myapp/urls.py:
urlpatterns=[
path(" ",views.index, name="index")
]
myproject/urls.py:
urlpatterns = [
path('admin/', admin.site.urls),<br>
path(' ', include('myapp.urls') ),
]
pls can you help me figure out what I'm doing wrong, when I run the code, it only shows 'the install worked successfully! congratulation!!' without running the html code that I pass in the views.py