8 lines
193 B
Python
8 lines
193 B
Python
from django.shortcuts import render
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
def chat(request):
|
|
return render(request, 'chat/chat.html', {
|
|
'title': _('Chat Box'),
|
|
})
|