Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tddschn
/
mq-quiz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
013c0dc
mq-quiz
/
quizzes
/
views.py
Pamela Fox
Quiz models
013c0dc
over 2 years ago
raw
Copy download link
history
blame
206 Bytes
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse(
"Here are all the quizzes"
)
def
display
(
request, quiz_id
):
return
HttpResponse(
"You're looking at quiz %s."
% quiz_id)