diff --git a/anatomy/static/css/anatomy.css b/anatomy/static/css/anatomy.css index 81fcecbd..8c849a87 100644 --- a/anatomy/static/css/anatomy.css +++ b/anatomy/static/css/anatomy.css @@ -262,7 +262,7 @@ table.table { } .rapid-img { - width: 50%; + width: 300px; height: 300px; } diff --git a/rapids/views.py b/rapids/views.py index 1ec19a35..37a21b63 100755 --- a/rapids/views.py +++ b/rapids/views.py @@ -47,6 +47,8 @@ from .decorators import user_is_author_or_rapid_checker from collections import defaultdict +from django.core.cache import cache + import logging from copy import deepcopy from django.forms.models import model_to_dict @@ -814,8 +816,6 @@ def exam_json(request, pk): exam_order.append(q.id) exam_questions[q.id] = { - "title": "{}".format(q.description), - "question": str(q.question_type), "images": [image_as_base64(q.image)], "annotations": [str(q.image_annotations)], "type": "rapid",