7 lines
No EOL
171 B
Python
7 lines
No EOL
171 B
Python
from django.shortcuts import render
|
|
from django.utils.translation import gettext as _
|
|
from django.views import View
|
|
|
|
|
|
class ChatView(View):
|
|
template_name = 'chat.html' |