NDOJ/chat_box/views.py

9 lines
193 B
Python
Raw Normal View History

2020-01-27 20:37:52 +00:00
from django.shortcuts import render
from django.utils.translation import gettext as _
def chat(request):
return render(request, 'chat/chat.html', {
'title': _('Chat Box'),
})