NDOJ/chat_box/views.py
2020-01-27 14:37:52 -06:00

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'),
})