from django.views.generic import TemplateView class HomeTemplateView(TemplateView): template_name = 'home.html' class TestChatTemplateView(TemplateView): template_name = 'chat_test.html'