Files
2022-04-08 00:29:33 +02:00

10 lines
241 B
Python

from django.shortcuts import render
from django.contrib.auth.models import User
def index(request):
"""View with chat layout"""
return render(
request, "index.html", {"users": User.objects.all().order_by("username")}
)