diff --git a/cara/apps/calculator/templates/base/calculator.report.html.j2 b/cara/apps/calculator/templates/base/calculator.report.html.j2
index 96afca2b..afd427cf 100644
--- a/cara/apps/calculator/templates/base/calculator.report.html.j2
+++ b/cara/apps/calculator/templates/base/calculator.report.html.j2
@@ -77,7 +77,7 @@
{% block report_summary %}
- 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 }}.
+ 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 }}*.
{% endblock report_summary %}
diff --git a/cara/apps/calculator/themes/cern/templates/calculator.report.html.j2 b/cara/apps/calculator/themes/cern/templates/calculator.report.html.j2
index 664640d7..7ee62ac6 100644
--- a/cara/apps/calculator/themes/cern/templates/calculator.report.html.j2
+++ b/cara/apps/calculator/themes/cern/templates/calculator.report.html.j2
@@ -26,18 +26,18 @@
{% if ((prob_inf > 15) 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 }}.
+ 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 %}
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 }}.
+ 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 %}
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 }}.
+ 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 %}