Pamela Fox commited on
Commit
f85cf8e
·
1 Parent(s): 1dbd98a

Question display, CSS

Browse files
quizzes/models.py CHANGED
@@ -32,17 +32,6 @@ class Question(models.Model):
32
  def __str__(self):
33
  return self.prompt
34
 
35
- def display(self):
36
- print(self.prompt)
37
- self.answer.display()
38
- user_answer = input()
39
- if self.answer.is_correct(user_answer):
40
- print("You got it!")
41
- self.answer_status = 'correct'
42
- else:
43
- print(f"Sorry, it was: {self.answer.correct_answer}")
44
- self.answer_status = 'incorrect'
45
-
46
  class Answer(models.Model):
47
  question = models.OneToOneField(
48
  Question,
@@ -65,12 +54,6 @@ class FreeTextAnswer(Answer):
65
  return user_answer.lower() == self.correct_answer.lower()
66
  return user_answer == self.correct_answer
67
 
68
- def display(self):
69
- if self.case_sensitive:
70
- print("Type your answer in (capitalization matters!):")
71
- else:
72
- print("Type your answer in (don't worry about capitalization):")
73
-
74
  class MultipleChoiceAnswer(Answer):
75
  choices = fields.ArrayField(models.CharField(max_length=200, blank=True))
76
 
@@ -78,19 +61,4 @@ class MultipleChoiceAnswer(Answer):
78
  return f"{self.correct_answer} from {self.choices}"
79
 
80
  def is_correct(self, user_answer):
81
- """Assumes user answer is number corresponding to answer."""
82
- return self.choices[int(user_answer) - 1] == self.correct_answer
83
-
84
- def is_correct(self, user_answer):
85
- self.user_answer = int(user_answer)
86
- self.user_answer -= 1
87
- correct_index = self.choices.index(self.correct_answer)
88
- if self.user_answer == correct_index:
89
- return True
90
- else:
91
- return False
92
-
93
- def display(self):
94
- print("Type the number corresponding to the correct answer.")
95
- for i in range(0, len(self.choices)):
96
- print(f"{i + 1}. {self.choices[i]}")
 
32
  def __str__(self):
33
  return self.prompt
34
 
 
 
 
 
 
 
 
 
 
 
 
35
  class Answer(models.Model):
36
  question = models.OneToOneField(
37
  Question,
 
54
  return user_answer.lower() == self.correct_answer.lower()
55
  return user_answer == self.correct_answer
56
 
 
 
 
 
 
 
57
  class MultipleChoiceAnswer(Answer):
58
  choices = fields.ArrayField(models.CharField(max_length=200, blank=True))
59
 
 
61
  return f"{self.correct_answer} from {self.choices}"
62
 
63
  def is_correct(self, user_answer):
64
+ return user_answer == self.correct_answer
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
quizzes/templates/quizzes/display.html CHANGED
@@ -2,31 +2,68 @@
2
  <html>
3
  <head>
4
  <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width">
6
- <title>Quiz {{ quiz.id }}</title>
 
7
  </head>
8
  <body>
9
- <h1>{{ quiz.name }}</h1>
 
10
 
11
- <form action="{% url 'quizzes:grade' question.id %}" method="post">
 
12
  {% csrf_token %}
13
- {% for question in quiz.question_set.all %}
14
- <section>
15
- <h3>{{ question.prompt }}</h3>
16
- {% if question.freetextanswer %}
17
- <input type="text" name="{{ question.pk }}">
18
- {% else %}
19
- {% for choice in question.multiplechoiceanswer.choices %}
20
- <label>
21
- <input type="radio" name="{{ question.pk }}" value="{{ choice }}">
22
- {{ choice}}
23
- </label>
24
- {% endfor %}
25
- {% endif %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  </section>
27
- {% endfor %}
28
 
29
- <button type="submit">Check answers</button>
30
- </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  </body>
32
  </html>
 
2
  <html>
3
  <head>
4
  <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Quiz: {{ quiz.name }}</title>
7
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
8
  </head>
9
  <body>
10
+ <div class="container">
11
+ <h1>Quiz: {{ quiz.name }}</h1>
12
 
13
+ <section class="bg-warning" style="padding:12px">
14
+ <form id="question-form" action="{% url 'quizzes:grade_question' question.id %}" method="post">
15
  {% csrf_token %}
16
+
17
+ <fieldset class="form-group">
18
+ <legend>{{ question.prompt }}</legend>
19
+ {% if question.freetextanswer %}
20
+ <div class="form-group">
21
+ <label for="answer">
22
+ {% if question.freetextanswer.case_sensitive %}
23
+ Type your answer in (capitalization matters!):
24
+ {% else %}
25
+ Type your answer in (don't worry about capitalization):
26
+ {% endif %}
27
+ </label>
28
+ <input type="text" name="answer" class="form-control">
29
+ </div>
30
+ {% else %}
31
+ {% for choice in question.multiplechoiceanswer.choices %}
32
+ <div class="radio">
33
+ <label>
34
+ <input type="radio" name="answer" value="{{ choice }}">
35
+ {{ choice}}
36
+ </label>
37
+ </div>
38
+ {% endfor %}
39
+ {% endif %}
40
+ </fieldset>
41
+ <button type="submit" class="btn btn-primary">Check answers</button>
42
+ </form>
43
+
44
+
45
+ <div id="question-feedback" style="margin-top:16px">
46
+ </div>
47
+
48
  </section>
 
49
 
50
+ {% if next_question %}
51
+ <div style="margin-top:12px; font-size:16px">
52
+ <a href="{% url 'quizzes:display_question' quiz.id next_question.id %}">→ Next question</a>
53
+ </div>
54
+ {% endif %}
55
+ </div>
56
+
57
+ <script>
58
+ const form = document.getElementById("question-form");
59
+ form.addEventListener("submit", (e) => {
60
+ e.preventDefault();
61
+ fetch(form.action, {method:'post', body: new FormData(form)})
62
+ .then((response) => response.text())
63
+ .then(text => {
64
+ document.getElementById("question-feedback").innerHTML = text;
65
+ });
66
+ });
67
+ </script>
68
  </body>
69
  </html>
quizzes/templates/quizzes/partial.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {% if is_correct %}
2
+ ✅ You got it!
3
+ {% else %}
4
+ ❌ Sorry! The correct answer is {{ correct_answer }}
5
+ {% endif %}
quizzes/urls.py CHANGED
@@ -6,7 +6,7 @@ app_name = 'quizzes'
6
 
7
  urlpatterns = [
8
  path('', views.index, name='index'),
9
- path('<int:quiz_id>/', views.display, name='display'),
10
- path('<int:quiz_id>/grade/', views.grade, name='grade'),
11
-
12
  ]
 
6
 
7
  urlpatterns = [
8
  path('', views.index, name='index'),
9
+ path('<int:quiz_id>/', views.display_quiz, name='display_quiz'),
10
+ path('<int:quiz_id>/questions/<int:question_id>', views.display_question, name='display_question'),
11
+ path('questions/<int:question_id>/grade/', views.grade_question, name='grade_question'),
12
  ]
quizzes/views.py CHANGED
@@ -1,18 +1,32 @@
1
- from django.shortcuts import get_object_or_404,render
 
2
 
3
- from .models import Quiz
4
 
5
  def index(request):
6
  quiz_list = Quiz.objects.all()
7
  context = {'quiz_list': quiz_list}
8
  return render(request, 'quizzes/index.html', context)
9
 
10
-
11
- def display(request, quiz_id):
12
  quiz = get_object_or_404(Quiz, pk=quiz_id)
13
- return render(request, 'quizzes/display.html', {'quiz': quiz})
14
-
15
 
16
- def grade(request, quiz_id):
17
  quiz = get_object_or_404(Quiz, pk=quiz_id)
18
- return render(request, 'quizzes/display.html', {'quiz': quiz})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from django.shortcuts import get_object_or_404,render, redirect
2
+ from django.urls import reverse
3
 
4
+ from .models import Quiz, Question
5
 
6
  def index(request):
7
  quiz_list = Quiz.objects.all()
8
  context = {'quiz_list': quiz_list}
9
  return render(request, 'quizzes/index.html', context)
10
 
11
+ def display_quiz(request, quiz_id):
 
12
  quiz = get_object_or_404(Quiz, pk=quiz_id)
13
+ question = quiz.question_set.first()
14
+ return redirect(reverse('quizzes:display_question', kwargs={'quiz_id': quiz_id, 'question_id': question.pk}))
15
 
16
+ def display_question(request, quiz_id, question_id):
17
  quiz = get_object_or_404(Quiz, pk=quiz_id)
18
+ # fetch ALL of the questions to find current and next question
19
+ questions = quiz.question_set.all()
20
+ current_question, next_question = None, None
21
+ for ind, question in enumerate(questions):
22
+ if question.pk == question_id:
23
+ current_question = question
24
+ if ind != len(questions) - 1:
25
+ next_question = questions[ind + 1]
26
+ return render(request, 'quizzes/display.html', {'quiz': quiz, 'question': current_question, 'next_question': next_question})
27
+
28
+ def grade_question(request, question_id):
29
+ question = get_object_or_404(Question, pk=question_id)
30
+ answer = getattr(question, 'multiplechoiceanswer', None) or getattr(question, 'freetextanswer')
31
+ is_correct = answer.is_correct(request.POST.get('answer'))
32
+ return render(request, 'quizzes/partial.html', {'is_correct': is_correct, 'correct_answer': answer.correct_answer})