diff --git a/app/routes.py b/app/routes.py
index 035edd2ba8cde04dd2211118057df9ea2268ec74..a827f66e1aba86803b9d447c345efe9251343c91 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -38,7 +38,14 @@ def ahrs():
 
 @app.route('/k40.html')
 def k40():
-    return render_template('plots.html', plots=K40_PLOTS)
+    return render_template(
+        'plots.html',
+        plots=K40_PLOTS,
+        info="The first plot shows the intra-DOM calibration. "
+        "y-axis: delta_t [ns], x-axis: cosine of angles. "
+        "The second plot the angular distribution of K40 rates. "
+        "y-axis: rate [Hz], x-axis: cosine of angles. "
+        "blue=before, red=after")
 
 
 @app.route('/trigger.html')