From 850d9637c3b743755aba13559c9f878400070eda Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 28 Aug 2024 18:06:18 +0100 Subject: [PATCH] update rcr --- rcr/templates/rcr/results.html | 80 ++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 29 deletions(-) diff --git a/rcr/templates/rcr/results.html b/rcr/templates/rcr/results.html index e44ad5dc..acb9e46a 100644 --- a/rcr/templates/rcr/results.html +++ b/rcr/templates/rcr/results.html @@ -2,35 +2,57 @@ {% block content %} - - - - - - - - - - - - - - - - {% for item in items %} - - - - - - - - - - - {% endfor %} - -
SpecialtyNameIDAssessed byOutcomeOutcome (reason)Outcome (free text)Comments
{{item.specialty}}{{item.name}}{{item.rcr_platform_id}}{{item.get_assessed_by_name|safe}}{{item.outcome}}{{item.outcome_reason}}{{item.outcome_free_text}}{{item.comments}}
+ + + + + + + + + + + + + + + + + + + {% for item in items %} + + + + + + + + + + + + + + {% endfor %} + +
SpecialtyNameIDAssessed byOutcomeOutcome (reason)Outcome (free text)CommentsRadiology CategoryOncology CategoryRadiology Condition
{{item.specialty}}{{item.name}}{{item.rcr_platform_id}}{{item.get_assessed_by_name|safe}}{{item.outcome}}{{item.outcome_reason}}{{item.outcome_free_text}}{{item.comments}}{% for cat in item.radiology_categories.all %} + {% if forloop.last %} + {{cat}} + {% else %} + {{cat}}, + + {% endif %} + {% endfor %} + {{item.oncology_category}}{% for cat in item.radiology_condition.all %} + {% if forloop.last %} + {{cat}} + {% else %} + {{cat}}, + + {% endif %} + {% endfor %} +
{% endblock %}