From 1c9487e7685bb24602ccc6269fa6125bcce9431d Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 29 Jan 2024 12:29:28 +0000 Subject: [PATCH] . --- rcr/templates/rcr/index.html | 4 ++++ rcr/views.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/rcr/templates/rcr/index.html b/rcr/templates/rcr/index.html index d12dd6e5..0eb2fcf2 100644 --- a/rcr/templates/rcr/index.html +++ b/rcr/templates/rcr/index.html @@ -26,6 +26,7 @@ + {% for item in items %}
Content TypeNameAssessed
By
@@ -81,6 +82,9 @@ td { padding-right: 10px; } + * { + box-sizing: unset; + } {% endblock css %} diff --git a/rcr/views.py b/rcr/views.py index 6e8bf9ee..64198ac4 100644 --- a/rcr/views.py +++ b/rcr/views.py @@ -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,