add chat box
This commit is contained in:
parent
15b0e06a4f
commit
af61e8a8e8
15 changed files with 175 additions and 6 deletions
8
chat_box/views.py
Normal file
8
chat_box/views.py
Normal 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'),
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue