update rcr
This commit is contained in:
@@ -2,35 +2,57 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Specialty</th>
|
<th>Specialty</th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
<th>Assessed by</th>
|
<th>Assessed by</th>
|
||||||
<th>Outcome</th>
|
<th>Outcome</th>
|
||||||
<th>Outcome (reason)</th>
|
<th>Outcome (reason)</th>
|
||||||
<th>Outcome (free text)</th>
|
<th>Outcome (free text)</th>
|
||||||
<th>Comments</th>
|
<th>Comments</th>
|
||||||
</tr>
|
<th>Radiology Category</th>
|
||||||
</thead>
|
<th>Oncology Category</th>
|
||||||
<tbody>
|
<th>Radiology Condition</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
{% for item in items %}
|
{% for item in items %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{item.specialty}}</td>
|
<td>{{item.specialty}}</td>
|
||||||
<td>{{item.name}}</td>
|
<td>{{item.name}}</td>
|
||||||
<td>{{item.rcr_platform_id}}</td>
|
<td>{{item.rcr_platform_id}}</td>
|
||||||
<td>{{item.get_assessed_by_name|safe}}</td>
|
<td>{{item.get_assessed_by_name|safe}}</td>
|
||||||
<td>{{item.outcome}}</td>
|
<td>{{item.outcome}}</td>
|
||||||
<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>
|
||||||
</tr>
|
<td>{% for cat in item.radiology_categories.all %}
|
||||||
{% endfor %}
|
{% if forloop.last %}
|
||||||
</tbody>
|
{{cat}}
|
||||||
</table>
|
{% 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>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user