add comlptede details to rcr index

This commit is contained in:
Ross
2024-01-29 22:41:34 +00:00
parent 1c9487e768
commit 10911502a7
+13 -1
View File
@@ -28,7 +28,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 %}">
<tr class="{{item.content_type}} {% if item.completed_radiology %} completed-radiology{% endif %}{% if item.completed_oncology %} completed-oncology{% endif %}">
<td class="{{item.specialty}}" title="{{item.specialty}}">
{{forloop.counter}}:
</td>
@@ -57,6 +57,18 @@
{% block css %}
<style type="text/css">
.completed-radiology::after {
content: '✓';
color: green;
}
.completed-oncology::after {
content: '✓';
color: blue;
}
.completed-oncology.completed-radiology::after {
content: '✓';
color: purple;
}
.completed::after {
content: '✓';
color: green;