From 73b89937522b3eda75da3eb7cdd4f8471d2ce6e7 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 29 Apr 2019 11:51:24 +0200 Subject: [PATCH] custom_settings: fix help_url for dev and test platforms (#32667) --- src/authentic2_cut/custom_settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/authentic2_cut/custom_settings.py b/src/authentic2_cut/custom_settings.py index cc789f7..d41a691 100644 --- a/src/authentic2_cut/custom_settings.py +++ b/src/authentic2_cut/custom_settings.py @@ -120,6 +120,7 @@ if PLATFORM == 'dev': TEMPLATE_VARS.update({ "environment_label": u"Site de développement", "moncompte_url": 'https://connexion-grandlyon.dev.entrouvert.org', + "help_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/glc/", }) elif PLATFORM == 'test': TEMPLATE_VARS.update({ @@ -127,6 +128,7 @@ elif PLATFORM == 'test': "smarttag_js": "https://tag.aticdn.net/586793/smarttag.js", "visits_tracking_js": "var tag = new ATInternet.Tracker.Tag();", "moncompte_url": 'https://moncompte-rec.grandlyon.com', + "help_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/glc/", }) elif PLATFORM == 'prod': TEMPLATE_VARS.update({