This commit is contained in:
Ross
2024-01-29 12:29:28 +00:00
parent 80f93d5e36
commit 1c9487e768
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -26,6 +26,7 @@
<table>
<tr><th></th><th>Content Type</th><th>Name</th><th>Assessed<br/> By</th></tr>
{% for item in items %}
<tr class="{{item.content_type}} {% if item.completed_radiology %} completed-radiology{% endif %}{% if item.completed_radiology %} completed-oncology{% endif %}">
<td class="{{item.specialty}}" title="{{item.specialty}}">
@@ -81,6 +82,9 @@
td {
padding-right: 10px;
}
* {
box-sizing: unset;
}
</style>
{% endblock css %}
+1 -1
View File
@@ -60,7 +60,7 @@ def radiology_index_all(request):
request,
"rcr/index.html",
{
"items": item_filter.qs,
"items": item_filter.qs.prefetch_related("assessed_by"),
"completed": False,
"assessor": None,
"item_filter": item_filter,