mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
13 lines
320 B
Python
13 lines
320 B
Python
from django.shortcuts import render
|
|
from django.utils.safestring import mark_safe
|
|
import json
|
|
|
|
|
|
def index(request):
|
|
return render(request, 'drawshare/index.html', {})
|
|
|
|
def room(request, room_name):
|
|
return render(request, 'drawshare/room.html', {
|
|
'room_name_json': mark_safe(json.dumps(room_name))
|
|
})
|