update rcr

This commit is contained in:
Ross
2024-08-28 18:06:18 +01:00
parent ca071168c5
commit 850d9637c3
+22
View File
@@ -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,6 +30,25 @@
<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>