{{ ds.name }}
{% if can_edit %}
Edit display set
{% endif %}
{% if ds.description %}
{{ ds.description }}
{% endif %}
{# Viewer area for the modal - mounted by rad/static/dv3d bundle #}
{% if ds.viewerstate and ds.annotations %}
{% endif %}
Findings:
{% if ds.findings.all %}
{% for finding in ds.findings.all %}
- {{ finding }}
{% endfor %}
{% else %}
None
{% endif %}
Structures:
{% if ds.structures.all %}
{% for structure in ds.structures.all %}
- {{ structure }}
{% endfor %}
{% else %}
None
{% endif %}
Conditions:
{% if ds.conditions.all %}
{% for condition in ds.conditions.all %}
- {{ condition }}
{% endfor %}
{% else %}
None
{% endif %}
Show advanced (viewer state & annotations)
{% include 'atlas/partials/json_pretty.html' with json_value=ds.viewerstate title='Viewer State' %}
{% include 'atlas/partials/json_pretty.html' with json_value=ds.annotations title='Annotations' %}