Basestructure Chat App

This commit is contained in:
2025-03-15 12:35:32 +01:00
parent ab6e27f80e
commit 889134784a
6 changed files with 93 additions and 3 deletions

View File

@@ -2,4 +2,7 @@
from django.shortcuts import render
def index(request):
return render(request, "chat/index.html")
return render(request, "chat/index.html")
def room(request, room_name):
return render(request, "chat/room.html", {"room_name": room_name})