robosats/chat/views.py

10 lines
214 B
Python
Raw Normal View History

2022-01-13 11:07:20 +00:00
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
})