diff --git a/cara/apps/calculator/__init__.py b/cara/apps/calculator/__init__.py
index c5b50385..7af18cec 100644
--- a/cara/apps/calculator/__init__.py
+++ b/cara/apps/calculator/__init__.py
@@ -148,11 +148,13 @@ class StaticModel(BaseRequestHandler):
class LandingPage(BaseRequestHandler):
def get(self):
+ template_environment = self.settings["template_environment"]
template = self.settings["template_environment"].get_template(
"index.html.j2")
report = template.render(
user=self.current_user,
calculator_prefix=self.settings["calculator_prefix"],
+ text_blocks=template_environment.globals['common_text']
)
self.finish(report)
diff --git a/cara/apps/templates/base/index.html.j2 b/cara/apps/templates/base/index.html.j2
index 4e1ba69a..3df8598f 100644
--- a/cara/apps/templates/base/index.html.j2
+++ b/cara/apps/templates/base/index.html.j2
@@ -52,13 +52,8 @@
- We wish to thank CERN’s HSE Unit, Beams Department, Experimental Physics Department, Information Technology Department, Industry, Procurement and Knowledge Transfer Department and International Relations Sector for their support to the study. - Thanks to Doris Forkel-Wirth, Benoit Delille, Walid Fadel, Olga Beltramello, Letizia Di Giulio, Evelyne Dho, Wayne Salter, Benoit Salvant and colleagues from the COVID working group for providing expert advice and extensively testing the model. - Finally, we wish to thank Fabienne Landua and the design service for preparing the illustrations and Alessandro Raimondo, Ana Padua and Manuela Cirilli from the Knowledge Transfer Group for their continuous support. - Our compliments towards the work and research performed by world leading scientists in this domain: Dr. Julian Tang, Prof. Manuel Gameiro, Dr. Linsey Marr, Prof. Jose Jimenez, Prof. Lidia Morawska, Prof. Yuguo Li et al. - their scientific contribution was indispensable for this project. - -
+ {{ text_blocks['Acknowledgements'] }} + {% endblock main %}