NDOJ/chat_box/views.py

7 lines
171 B
Python
Raw Normal View History

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