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
View File
View File
+8
View File
@@ -0,0 +1,8 @@
# chat/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]
+5
View File
@@ -0,0 +1,5 @@
# chat/views.py
from django.shortcuts import render
def index(request):
return render(request, "chat/index.html")