{% extends "atlas/base.html" %} {% load static %} {% load crispy_forms_tags %} {% block content %}

Normals

{% for field in filter.form.visible_fields %}
{{ field.label_tag }} {{ field }}
{% endfor %}
Clear
{% if page_obj.object_list %}
{% for normal in page_obj.object_list %}
{{ normal.case.title }}
{{ normal.added_date|date:"Y-m-d" }}

Age: {{ normal.display_age }} {% if normal.examination %} • Exam: {{ normal.examination }}{% endif %} {% if normal.modality %} • Modality: {{ normal.modality }}{% endif %}

{% if normal.notes %}

{{ normal.notes }}

{% endif %}
{% endfor %}
{% else %}
No normal cases found.
{% endif %}
{% endblock %}