From e6bfbc660b8d1a6d186ccf8e94525f105dc925d0 Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti Date: Tue, 31 Mar 2020 11:29:12 +0200 Subject: [PATCH] [experments][templates][experments] improve experiment failure/success notification email Fixes #546 --- .../templates/experiments/failed_experiment_email.txt | 2 +- .../templates/experiments/successful_experiment_email.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beat/web/experiments/templates/experiments/failed_experiment_email.txt b/beat/web/experiments/templates/experiments/failed_experiment_email.txt index 791fcdfa..1fcd1a79 100644 --- a/beat/web/experiments/templates/experiments/failed_experiment_email.txt +++ b/beat/web/experiments/templates/experiments/failed_experiment_email.txt @@ -2,7 +2,7 @@ Hello, The experiment {{ experiment.fullname }} failed to execute properly. -More details: http://{{ site.domain }}{{ experiment.get_absolute_url }} +More details: http://{{ site.domain }}/login/?next={{ experiment.get_absolute_url }} Note: You're receiving this email because you are subscribed to receive experiment notifications. You may turn them off at your settings page. diff --git a/beat/web/experiments/templates/experiments/successful_experiment_email.txt b/beat/web/experiments/templates/experiments/successful_experiment_email.txt index 9de856ec..a8443411 100644 --- a/beat/web/experiments/templates/experiments/successful_experiment_email.txt +++ b/beat/web/experiments/templates/experiments/successful_experiment_email.txt @@ -2,7 +2,7 @@ Hello, The experiment {{ experiment.fullname }} finished successfully. -More details: http://{{ site.domain }}{{ experiment.get_absolute_url }} +More details: http://{{ site.domain }}/login/?next={{ experiment.get_absolute_url }} Note: You're receiving this email because you are subscribed to receive experiment notifications. You may turn them off at your settings page. -- GitLab