Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save akshar-raaj/03072f66bd436e793173381c23745fa1 to your computer and use it in GitHub Desktop.

Select an option

Save akshar-raaj/03072f66bd436e793173381c23745fa1 to your computer and use it in GitHub Desktop.
Result view
@api_view(['GET'])
def question_result_view(request, question_id):
question = get_object_or_404(Question, pk=question_id)
serializer = QuestionResultPageSerializer(question)
return Response(serializer.data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment