5 lines
157 B
Python
5 lines
157 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
def play(request,pk): #
|
|
return render(request, 'components/answer.html', {"pk": pk}) # |