add chat box

This commit is contained in:
Dinh 2020-01-27 14:37:52 -06:00
parent 15b0e06a4f
commit af61e8a8e8
15 changed files with 175 additions and 6 deletions

8
chat_box/views.py Normal file
View file

@ -0,0 +1,8 @@
from django.shortcuts import render
from django.utils.translation import gettext as _
def chat(request):
return render(request, 'chat/chat.html', {
'title': _('Chat Box'),
})