+
+ {{
+ __('This quiz consists of {0} questions.').format(
+ quiz.doc.questions.length
+ )
+ }}
+
+
+ {{
+ __(
+ 'You will have to get {0}% correct answers in order to pass the quiz.'
+ ).format(quiz.doc.passing_percentage)
+ }}
+
+
+ {{
+ __('You can attempt this quiz {0}.').format(
+ quiz.doc.max_attempts == 1
+ ? '1 time'
+ : `${quiz.doc.max_attempts} times`
+ )
+ }}
+
+
+ {{
+ __(
+ 'The quiz has a time limit.For each question you will be given { 0} seconds.'
+ ).format(quiz.doc.time)
+ }}
+
+
-
- {{ __("Quiz Summary") }}
-
-
- {{ __("You got {0}% correct answers with a score of {1} out of {2}").format(Math.ceil(quizSubmission.data.percentage), quizSubmission.data.score, quizSubmission.data.score_out_of) }}
-
-
-