my views.py : from django.shortcuts import render from django.http import HttpResponse def index(request): return render(request, “chatroom.html”)
urls.py : from django.urls import path, include
from . import views
urlpatterns = [
path('',views.index, name='index')
] and my templates at the settings.py same like as the video