diff --git a/cara/apps/templates/cern/calculator.report.html.j2 b/cara/apps/templates/cern/calculator.report.html.j2
index 78e73b8f..07c03361 100644
--- a/cara/apps/templates/cern/calculator.report.html.j2
+++ b/cara/apps/templates/cern/calculator.report.html.j2
@@ -7,9 +7,9 @@
{% endblock report_preamble_navtab %}
{% block warning_animation %}
- {% if ((prob_inf > 15) or (expected_new_cases >= 1)) %} {% set warning_color= 'bg-danger' %}
- {% elif (5 <= prob_inf <= 15) %} {% set warning_color = 'bg-warning' %}
- {% elif (prob_inf < 5) %} {% set warning_color = 'bg-success' %}
+ {% if ((prob_inf > 10) or (expected_new_cases >= 1)) %} {% set warning_color= 'bg-danger' %}
+ {% elif (2 <= prob_inf <= 10) %} {% set warning_color = 'bg-warning' %}
+ {% elif (prob_inf < 2) %} {% set warning_color = 'bg-success' %}
{% endif %}
@@ -23,25 +23,25 @@
{% block report_summary %}
- {% if ((prob_inf > 15) or (expected_new_cases >= 1)) %}
+ {% if ((prob_inf > 10) or (expected_new_cases >= 1)) %}
Not Acceptable:
Taking into account the uncertainties tied to the model variables, in this scenario, the probability of one exposed occupant getting infected is {{ prob_inf | non_zero_percentage }} and the expected number of new cases is {{ expected_new_cases | float_format }}*.
- {% elif 5 <= prob_inf <= 15 %}
+ {% elif 2 <= prob_inf <= 10 %}
Attention:
Taking into account the uncertainties tied to the model variables, in this scenario, the probability of one exposed occupant getting infected is {{ prob_inf | non_zero_percentage }} and the expected number of new cases is {{ expected_new_cases | float_format }}*.
- {% elif prob_inf < 5 %}
+ {% elif prob_inf < 2 %}
Acceptable:
Taking into account the uncertainties tied to the model variables, in this scenario, the probability of one exposed occupant getting infected is {{ prob_inf | non_zero_percentage }} and the expected number of new cases is {{ expected_new_cases | float_format }}*.
{% endif %}
- {% if (prob_inf > 5) %}
+ {% if (prob_inf > 2) %}
{% if scale_warning.level == "green-1" %}
@@ -67,13 +67,13 @@
{% endblock report_summary %}
{% block report_summary_footnote %}
- {% if ((prob_inf > 15) or (expected_new_cases >= 1)) %}
+ {% if ((prob_inf > 10) or (expected_new_cases >= 1)) %}
This exceeds the authorised risk threshold or number of expected new cases.
The risk level must be reduced before this activity can be undertaken.
- {% elif (5 <= prob_inf <= 15) %}
+ {% elif (2 <= prob_inf <= 10) %}
This activity has an elevated level of risk, ALARA principles must be applied to minimise the level of risk before undertaking the activity.
See the footnotes for more details on the ALARA principles.
- {% elif (prob_inf < 5) %}
+ {% elif (prob_inf < 2) %}
This level of risk is within acceptable parameters, no further actions are required.
{% endif %}
{% endblock report_summary_footnote %}