• {% if ds.viewerstate and ds.annotations %} {% endif %}
    {{ ds.name }} {% if ds.description %} ({{ ds.description }}) {% 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' %}
    ID: {{ ds.pk }}