arxiv_chatbot / chat /views.py
Artteiv's picture
Upload 39 files
75df934 verified
raw
history blame
226 Bytes
# chat/views.py
from django.shortcuts import render
def index(request):
return render(request, "index.html")
def room(request, room_name):
return render(request, "chat/room.html", {"room_name": room_name})