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> <table>
<tr><th></th><th>Content Type</th><th>Name</th><th>Assessed<br/> By</th></tr>
{% for item in items %} {% for item in items %}
<tr class="{{item.content_type}} {% if item.completed_radiology %} completed-radiology{% endif %}{% if item.completed_radiology %} completed-oncology{% endif %}"> <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}}"> <td class="{{item.specialty}}" title="{{item.specialty}}">
@@ -81,6 +82,9 @@
td { td {
padding-right: 10px; padding-right: 10px;
} }
* {
box-sizing: unset;
}
</style> </style>
{% endblock css %} {% endblock css %}
+1 -1
View File
@@ -60,7 +60,7 @@ def radiology_index_all(request):
request, request,
"rcr/index.html", "rcr/index.html",
{ {
"items": item_filter.qs, "items": item_filter.qs.prefetch_related("assessed_by"),
"completed": False, "completed": False,
"assessor": None, "assessor": None,
"item_filter": item_filter, "item_filter": item_filter,