mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
10 lines
214 B
Python
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
|
|
}) |