robosats/chat/views.py
2022-01-13 06:08:21 -08:00

10 lines
214 B
Python

from django.shortcuts import render
def index(request):
return render(request, 'index.html', {})
def room(request, order_id):
return render(request, 'chatroom.html', {
'order_id': order_id
})