9 lines
221 B
Python
9 lines
221 B
Python
# chat/views.py
|
|
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
return render(request, "chat/index.html")
|
|
|
|
def room(request, room_name):
|
|
return render(request, "chat/room.html", {"room_name": room_name})
|