{% extends 'rcr/base.html' %}
{% block content %}
Filter
| Specialty | Name | ID | Assessed by | Outcome | Outcome (reason) | Outcome (free text) | Comments | Level | Radiology Category | Oncology Category | Radiology Condition |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{item.specialty}} | {{item.name}} | {{item.rcr_platform_id}} | {{item.get_assessed_by_name|safe}} | {{item.outcome}} | {{item.outcome_reason}} | {{item.outcome_free_text}} | {{item.comments}} | {% for cat in item.level.all %} {% if forloop.last %} {{cat}} {% else %} {{cat}}, {% endif %} {% endfor %} | {% for cat in item.radiology_categories.all %} {% if forloop.last %} {{cat}} {% else %} {{cat}} | {% endif %} {% endfor %} | {{item.oncology_category}} | {% for cat in item.radiology_condition.all %} {% if forloop.last %} {{cat}} {% else %} {{cat}} | {% endif %} {% endfor %} |