This commit is contained in:
Ross
2024-10-28 21:53:10 +00:00
parent 0776400941
commit ac0b556dfa
+3 -2
View File
@@ -15,6 +15,7 @@
<p>This page lists all of the radiology categories and the items that exist within them. The items are grouped by category. By default only items to keep are shown.</p>
<button _='on click toggle .visible on .id' class="btn btn-small"> Toggle IDs</button>
<button _='on click toggle .visible on .conditions' class="btn btn-small"> Toggle Conditions</button>
{% comment %} <br/>
Show outcomes
@@ -50,7 +51,7 @@ _="on click if me.checked show .outcome-{{outcome.id}} else hide .outcome-{{outc
<th>Content type</th>
<th>Level</th>
<th>Outcome</th>
<th>Radiology condition</th>
<th class="conditions">Radiology condition</th>
</tr>
{% for item in items %}
@@ -60,7 +61,7 @@ _="on click if me.checked show .outcome-{{outcome.id}} else hide .outcome-{{outc
<td>{{item.content_type}}</td>
<td>{{item.get_level}}</td>
<td>{{item.outcome}}</td>
<td>{{item.get_radiology_condition_line_breaks}}</td>
<td class="conditions">{{item.get_radiology_condition_line_breaks}}</td>
</tr>
{% endfor %}