.
This commit is contained in:
@@ -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
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user