From 7b45483870c851eddda65e814c15fc60356cdf9b Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 6 Jan 2025 11:16:19 +0000 Subject: [PATCH] . --- anatomy/templates/anatomy/mark.html | 10 +++++----- generic/views.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anatomy/templates/anatomy/mark.html b/anatomy/templates/anatomy/mark.html index 2641cbe4..6e38c7bf 100644 --- a/anatomy/templates/anatomy/mark.html +++ b/anatomy/templates/anatomy/mark.html @@ -38,22 +38,22 @@ {% for answer in user_answers %} {% if answer in answer_suggest_incorrect %} -
  • {{ answer }}
  • +
  • {{ answer }}
  • {% else %} -
  • {{ answer }}
  • +
  • {{ answer }}
  • {% endif %} {% endfor %} Marked:
    diff --git a/generic/views.py b/generic/views.py index c1fc4e28..3194ae03 100644 --- a/generic/views.py +++ b/generic/views.py @@ -2654,7 +2654,7 @@ class GenericViewBase: @method_decorator(login_required) def question_user_answers_by_compare(self, request, pk, answer_compare): print(answer_compare) - answer_compare = urllib.parse.unquote(answer_compare) + #answer_compare = urllib.parse.unquode(answer_compare) return self.question_user_answers(request, pk, answer_compare) @method_decorator(login_required)