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 %} {% block content %}
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Specialty</th> <th>Specialty</th>
@@ -13,6 +13,9 @@
<th>Outcome (reason)</th> <th>Outcome (reason)</th>
<th>Outcome (free text)</th> <th>Outcome (free text)</th>
<th>Comments</th> <th>Comments</th>
<th>Radiology Category</th>
<th>Oncology Category</th>
<th>Radiology Condition</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -27,10 +30,29 @@
<td>{{item.outcome_reason}}</td> <td>{{item.outcome_reason}}</td>
<td>{{item.outcome_free_text}}</td> <td>{{item.outcome_free_text}}</td>
<td>{{item.comments}}</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> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
{% endblock %} {% endblock %}