This commit is contained in:
Ross
2024-10-30 22:57:54 +00:00
parent 162776c103
commit 5397bf10ac
+4 -1
View File
@@ -57,7 +57,7 @@ _="on click if me.checked show .outcome-{{outcome.id}} else hide .outcome-{{outc
{% for item in items %} {% for item in items %}
<tr class="outcome-{{item.outcome.id}}"> <tr class="outcome-{{item.outcome.id}}">
<td class="id">{{item.rcr_platform_id}}</td> <td class="id">{{item.rcr_platform_id}}</td>
<td>{{item.name}}</td> <td><a href='{% url "rcr:radiology_detail_view" item.pk %}' class="item-link"><i class="bi bi-file-earmark"></i></a>{{item.name}}</td>
<td>{{item.content_type}}</td> <td>{{item.content_type}}</td>
<td>{{item.get_level}}</td> <td>{{item.get_level}}</td>
<td>{{item.outcome}}</td> <td>{{item.outcome}}</td>
@@ -147,6 +147,9 @@ Item count: {{items.count}}
tr { tr {
border-bottom: 1px dashed rgba(204, 204, 204, 0.37); border-bottom: 1px dashed rgba(204, 204, 204, 0.37);
} }
.item-link {
color: purple;
}
</style> </style>
{% endblock css %} {% endblock css %}