diff --git a/anatomy/templates/anatomy/question_detail.html b/anatomy/templates/anatomy/question_detail.html index 2c43e666..c4aa5729 100644 --- a/anatomy/templates/anatomy/question_detail.html +++ b/anatomy/templates/anatomy/question_detail.html @@ -2,19 +2,24 @@ {% block content %} {% load static %} - - {% include 'anatomy/question_link_header.html' %} -
+ data-annotations='{{question.image_annotations}}' data-edit_annotation=true> +
+ Help +

Annotate the image using the right mouse button to click and drag an arrow. To remove an arrow drag it out of the image boundaries. To save the changes click the "Save Annotations" button.

+ +

There is no limit to the number of arrows that can be added to the image.

+
+ + +
Created: {{ question.created_date|date:"d/m/Y" }}
-

{{ question.get_primary_answer }}

-

{{question.question_type}}

+

Question type: {{question.question_type}}

+

Primary answer: {{ question.get_primary_answer }}

Answers: diff --git a/rad/static/css/anatomy.css b/rad/static/css/anatomy.css index 9e9373f7..6174df77 100644 --- a/rad/static/css/anatomy.css +++ b/rad/static/css/anatomy.css @@ -268,7 +268,7 @@ button a { #save-annotations { position: absolute; - left: 0; + bottom: 0px; } #save-annotations.save-rapid-annotations { @@ -1303,4 +1303,13 @@ details.help-text > summary { #div_id_exams { display: inline-block; +} + +#dicom-image .help-text{ + position: absolute; + z-index: 9999999; +} + +#dicom-image .help-text:hover{ + background-color: rgba(0, 0, 0, 0.546); } \ No newline at end of file