custom_settings: modify help_url (SAU URL) (fixes #17777)

This commit is contained in:
Benjamin Dauvergne 2017-11-09 11:14:26 +01:00
parent 05cb4fcf4f
commit d5e35a72fa
1 changed files with 1 additions and 4 deletions

View File

@ -122,7 +122,7 @@ TEMPLATE_VARS = {
"theme_color": u"#FF0303",
"theme": u"grandlyon-cut",
"default_from_email": u"ne-pas-repondre@grandlyon.com",
"help_url": u"http://doc-publik.entrouvert.com",
"help_url": u"https://portail-citoyen-sau.guichet-recette.grandlyon.com/",
'theme_base': 'theme.html',
'theme_base_filename': 'theme.html',
"account_label": "compte GRANDLYON CONNECT",
@ -130,7 +130,6 @@ TEMPLATE_VARS = {
if PLATFORM == 'dev':
TEMPLATE_VARS.update({
"environment_label": u"Site de développement",
"help_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
"partners_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
})
elif PLATFORM == 'test':
@ -138,14 +137,12 @@ elif PLATFORM == 'test':
"environment_label": u"Site de test",
"smarttag_js": "https://tag.aticdn.net/586793/smarttag.js",
"visits_tracking_js": "var tag = new ATInternet.Tracker.Tag();",
"help_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
"partners_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
})
elif PLATFORM == 'prod':
TEMPLATE_VARS.update({
"smarttag_js": "https://tag.aticdn.net/586794/smarttag.js",
"visits_tracking_js": "var tag = new ATInternet.Tracker.Tag();",
"help_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
"partners_url": "https://portail-citoyen-sau.guichet-recette.grandlyon.com/faq/",
})