{% extends "base.html" %} {% load static %} {% load url %} {% load profiles %} {% load workstations %} {% load guardian_tags %} {% load bleach %} {% load meta_attr %} {% block breadcrumbs %} {% endblock %} {% block sidebar %} {% get_obj_perms request.user for object as "readerstudy_perms" %}
{% endblock %} {% block content %} {% get_obj_perms request.user for object as "readerstudy_perms" %}

{{ object.title }}

{{ object.help_text_markdown|md2html }} {% if user_score.score__sum is not None and progress.hangings == 100.0 %} {% endif %} {% if "read_readerstudy" in readerstudy_perms %}

{% endif %} {% if "change_readerstudy" in readerstudy_perms %}

Admin Info

This reader study {% if object.public %} is visible to the public, {% if object.access_request_handling != 'ACCEPT_ALL' %} however, users will need to request access, which you will need to approve {% if object.access_request_handling == 'ACCEPT_VERIFIED_USERS' %} (unless they are verified) {% endif %} before they can participate in this reader study. {% else %} and users' access requests will be granted automatically. {% endif %} It {% endif %} uses {{ object.workstation.title }} {% if object.workstation_config %} with configuration {{ object.workstation_config.title }}. {% else %} with its default configuration. {% endif %} There {{ object.display_sets.count|pluralize:'is, are' }} {{ object.display_sets.count }} case{{ object.display_sets.count|pluralize }}. {% if object.shuffle_hanging_list %} Each reader will read the cases in a unique order. {% else %} Each reader will read the cases in the same order. {% endif %}

Update Settings

{% endif %}
{% if "change_readerstudy" in readerstudy_perms %}

Editors

Add Editors

{% url 'reader-studies:editors-update' slug=object.slug as editor_update_url %} {% include "groups/partials/user_list.html" with edit_url=editor_update_url form=editor_remove_form users=object.editors_group.user_set.all %}

Cases

There {{ object.display_sets.count|pluralize:'is, are' }} {{ object.display_sets.count }} case{{ object.display_sets.count|pluralize }} in this reader study.

Add Cases (batch) Add Case (single) View / Delete Cases

Questions

Add a Question

Readers

Add Readers

{% url 'reader-studies:readers-update' slug=object.slug as readers_update_url %} {% include "groups/partials/user_list.html" with role_name="readers" edit_url=readers_update_url form=editor_remove_form users=readers %}

Ground Truth

If you wish to assess the performance of the readers you can upload the CSV file containing the ground truth for this reader study here.

The first row of the CSV file must contain the headings case, followed by the question text for each of the questions in the reader study (excluding those of type heading).

The consecutive lines contain the id per case. Then include the answer for the question corresponding to the question text defined in the header for that column. All answers must be enclosed in single quotes. Strings must be enclosed in both single and double quotes, i.e. '"answer"'. For choice type questions, the options text(s) must be provided as a string. For optional questions, use null if you do not widh to provide ground truth for that question.

An example of the first two lines of the csv for this reader study is: {{ example_ground_truth|linebreaks }}

Export

You can access this reader study and integrate its data into other applications via the live REST API, alternatively, you can download the current data in CSV format:

Reader Study

Questions

{% for offset in image_offsets %}

Images ({{ offset|add:1 }} to {{ offset|add:limit }})

{% endfor %} {% for offset in answer_offsets %}

Answers ({{ offset|add:1 }} to {{ offset|add:limit }})

{% endfor %} {% for offset in display_set_offsets %}

Display sets ({{ offset|add:1 }} to {{ offset|add:limit }})

{% endfor %}
{% if perms.reader_studies.add_readerstudy %}

Copy

You can copy this reader study, optionally including all images, questions, case texts and the hanging list.

Copy this reader study

{% endif %} {% endif %}
{% endblock %} {% block script %} {{ block.super }} {% include 'workstations/partials/session-control.html' %} {% endblock %}