python-scripts/scripts/Chat-App/chat/views.py
Raj Saha b4e2d6e874
Upload Chat-App
uploaded the required files
2022-10-09 10:52:32 +05:30

12 lines
355 B
Python

## This will route your views to the chatPage.html that had been created in the templates folder of the chat app.
from django.shortcuts import render, redirect
def chatPage(request, *args, **kwargs):
if not request.user.is_authenticated:
return redirect("login-user")
context = {}
return render(request, "chat/chatPage.html", context)