Add chat App

This commit is contained in:
2025-03-15 12:15:45 +01:00
parent 35617470c4
commit ab6e27f80e
8 changed files with 56 additions and 2 deletions

5
core/chat/views.py Normal file
View File

@@ -0,0 +1,5 @@
# chat/views.py
from django.shortcuts import render
def index(request):
return render(request, "chat/index.html")