update rcr

This commit is contained in:
Ross
2024-08-28 18:06:18 +01:00
parent ca071168c5
commit 850d9637c3
+24 -2
View File
@@ -2,7 +2,7 @@
{% block content %}
<table>
<table>
<thead>
<tr>
<th>Specialty</th>
@@ -13,6 +13,9 @@
<th>Outcome (reason)</th>
<th>Outcome (free text)</th>
<th>Comments</th>
<th>Radiology Category</th>
<th>Oncology Category</th>
<th>Radiology Condition</th>
</tr>
</thead>
<tbody>
@@ -27,10 +30,29 @@
<td>{{item.outcome_reason}}</td>
<td>{{item.outcome_free_text}}</td>
<td>{{item.comments}}</td>
<td>{% for cat in item.radiology_categories.all %}
{% if forloop.last %}
{{cat}}
{% else %}
{{cat}},
{% endif %}
{% endfor %}
</td>
<td>{{item.oncology_category}}</td>
<td>{% for cat in item.radiology_condition.all %}
{% if forloop.last %}
{{cat}}
{% else %}
{{cat}},
{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</table>
{% endblock %}