diff --git a/anatomy/templates/anatomy/exam_overview.html b/anatomy/templates/anatomy/exam_overview.html
index bb1020b7..58986295 100644
--- a/anatomy/templates/anatomy/exam_overview.html
+++ b/anatomy/templates/anatomy/exam_overview.html
@@ -36,8 +36,8 @@
{{ question.question_type }}: {{ question.get_primary_answer }}
- Modality: {{ question.modality }}, View, Mark
- [id: {{question.pk}}]
+ Modality: {{ question.modality }}, Mark
+ [id: {{question.pk}}]
{% endfor %}
diff --git a/anatomy/templates/anatomy/question_detail.html b/anatomy/templates/anatomy/question_detail.html
index f392ec1b..3026dbd9 100644
--- a/anatomy/templates/anatomy/question_detail.html
+++ b/anatomy/templates/anatomy/question_detail.html
@@ -9,6 +9,8 @@
Edit
Clone
Delete
+ Delete
+ Add Note
Admin Edit
{% if exam %}
@@ -64,6 +66,7 @@
{{ question.image_annotations }}
diff --git a/generic/views.py b/generic/views.py
index 3298abb9..daac31d8 100644
--- a/generic/views.py
+++ b/generic/views.py
@@ -35,7 +35,9 @@ from longs.models import Exam as LongExam
from anatomy.models import AnatomyQuestion as AnatomyQuestion
from anatomy.models import Exam as AnatomyExam
from sbas.models import Question as SbasQuestion
-from sbas.models import Exam as SbasExam
+#from sbas.models import Exam as SbasExam
+from physics.models import Question as PhysicsQuestion
+#from physics.models import Exam as PhysicsExam
from django.db.models import Case, When
from django.conf import settings
@@ -58,6 +60,9 @@ def get_question_and_content_type(question_type):
elif question_type == "sbas":
question = SbasQuestion
content_type = ContentType.objects.get(app_label="sbas", model="question")
+ elif question_type == "physics":
+ question = PhysicsQuestion
+ content_type = ContentType.objects.get(app_label="physics", model="question")
else:
raise PermissionError()
diff --git a/physics/templates/physics/exam_overview.html b/physics/templates/physics/exam_overview.html
index d32e5c65..d6f45f41 100644
--- a/physics/templates/physics/exam_overview.html
+++ b/physics/templates/physics/exam_overview.html
@@ -5,6 +5,9 @@
{% load thumbnail %}