diff --git a/cara/apps/calculator/report_generator.py b/cara/apps/calculator/report_generator.py
index e703e225..1a688cc5 100644
--- a/cara/apps/calculator/report_generator.py
+++ b/cara/apps/calculator/report_generator.py
@@ -307,11 +307,13 @@ class ReportGenerator:
)
context['permalink'] = generate_permalink(base_url, self.calculator_prefix, form)
context['calculator_prefix'] = self.calculator_prefix
+
+ # For further information about these values visit https://gitlab.cern.ch/cara/cara/-/merge_requests/321.
context['scale_warning'] = {
- 'level': 'red-4',
- 'incidence_rate': 'higher or equal to 100 new cases per 100 000 inhabitants',
- 'onsite_access': 'lower than 4000',
- 'threshold': '5%'
+ 'level': 'red-4', # 'red-4' - 'orange-3' - 'yellow-2' - 'green-1'
+ 'risk': 'strong', # 'strong' - 'medium' - 'reduced' - ''
+ 'onsite_access': '4’000', # '4’000' - '5’000' - '6’500' - '8’000'
+ 'threshold': '5%' # '5%' - '' - '' - ''
}
return context
diff --git a/cara/apps/templates/cern/calculator.report.html.j2 b/cara/apps/templates/cern/calculator.report.html.j2
index 78e73b8f..b01aad11 100644
--- a/cara/apps/templates/cern/calculator.report.html.j2
+++ b/cara/apps/templates/cern/calculator.report.html.j2
@@ -45,19 +45,19 @@
{% if scale_warning.level == "green-1" %}
- Note: the current CERN COVID Scale is Green - 1, which means the incidence rate in the local community is {{scale_warning.incidence_rate}}. Align your risk assessment with the guidance and instructions provided by the HSE Unit.
+ Note: the current CERN COVID Scale is Green – 1. The risk of circulation of asymptomatic or pre-symptomatic infected individuals within the CERN site is considered negligible. There may be more than {{scale_warning.onsite_access}} daily on-site accesses. Align your risk assessment with the guidance and instructions provided by the HSE Unit.
{% elif scale_warning.level == "yellow-2" %}
- Note: the current CERN COVID Scale is Yellow - 2, which means the incidence rate in the local community is {{scale_warning.incidence_rate}}. There is a reduced chance that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site which, during this stage, corresponds to an average daily on-site access {{scale_warning.onsite_access}}. See with your supervisor if this scenario is acceptable.
+ Note: the current CERN COVID Scale is Yellow - 2. There is a {{scale_warning.risk}} risk that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site. There may be around {{scale_warning.onsite_access}} daily on-site accesses during this stage. See with your supervisor, DSO/LEXGLIMOS and space manager if this scenario is acceptable and if any additional measures can be applied (ALARA).
{% elif scale_warning.level == "orange-3" %}
- Warning: the current CERN COVID Scale is Orange - 3, which means the incidence rate in the local community is {{scale_warning.incidence_rate}}. There is a slight chance that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site which, during this stage, corresponds to an average daily on-site access {{scale_warning.onsite_access}}. See with your supervisor if any additional measures can be applied (ALARA).
+ Warning: the current CERN COVID Scale is Orange - 3. There is a {{scale_warning.risk}} risk that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site. There may be around {{scale_warning.onsite_access}} daily on-site accesses during this stage. See with your supervisor, DSO/LEXGLIMOS and space manager if this scenario is acceptable and if any additional measures can be applied (ALARA).
{% elif scale_warning.level == "red-4" %}
- Warning: the current CERN COVID Scale is Red - 4, which means the incidence rate in the local community is {{scale_warning.incidence_rate}}. There is a strong chance that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site which, during this stage, corresponds to an average daily on-site access {{scale_warning.onsite_access}}. Please reduce the value below the threshold of {{scale_warning.threshold}}.
+ Warning: the current CERN COVID Scale is Red - 4. There is a {{scale_warning.risk}} risk that asymptomatic or pre-symptomatic infected individuals circulate within the CERN site. There may be around {{scale_warning.onsite_access}} daily on-site accesses during this stage. Please reduce the value below the threshold of {{scale_warning.threshold}}. See with your supervisor, DSO/LEXGLIMOS and space manager if this scenario is acceptable and if any additional measures are required.
{% else %}
Note: The CERN COVID Level is not specified.