From e840f16dcdd4bf26d4af1fec1019639acb47f90e Mon Sep 17 00:00:00 2001 From: Charles Connell Date: Tue, 11 Feb 2014 09:45:42 -0500 Subject: [PATCH] Show true/false questions --- karmaworld/templates/quizzes/quiz.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/karmaworld/templates/quizzes/quiz.html b/karmaworld/templates/quizzes/quiz.html index 1387955..ad62241 100644 --- a/karmaworld/templates/quizzes/quiz.html +++ b/karmaworld/templates/quizzes/quiz.html @@ -76,6 +76,15 @@ {% endwith %} {% endif %} + {% if 'TrueFalseQuestion' in item.0 %} + {% with question=item.1 %} +
+

{{ question.text }}

+

True or False?

+
+ {% endwith %} + {% endif %} + {% if 'FlashCardQuestion' in item.0 %} {% with question=item.1 %}
-- 2.25.1