NDOJ/chat_box/views.py

7 lines
171 B
Python
Raw Normal View History

2020-01-27 20:37:52 +00:00
from django.shortcuts import render
from django.utils.translation import gettext as _
2020-01-28 20:12:17 +00:00
from django.views import View
2020-01-27 20:37:52 +00:00
2020-01-28 20:12:17 +00:00
class ChatView(View):
template_name = 'chat.html'