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