update rcr
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user