current = request.session[score]
current = int(current) + 1
request.session[score] = current
anon_session_score(request, 1, 1)
else:
outcome = "incorrect"
anon_session_score(request, 0, 1)
but the result is not what I expected
I want to modify the django-quiz
application.https://github.com/tomwalker/django_quiz
The quesiton will be a multiple true false type. Each question will have 5
stem, each will be tested for true/false. Each will carry partial marks eg.
1 will be awarded for a correct ans. And there will be a s
2 matches
Mail list logo