Commit 13d29b8e by Diana Huang

Fix indentation of settings dictionaries.

parent 6110b54c
...@@ -586,7 +586,8 @@ INSTALLED_APPS = ( ...@@ -586,7 +586,8 @@ INSTALLED_APPS = (
######################### MARKETING SITE ############################### ######################### MARKETING SITE ###############################
EDXMKTG_COOKIE_NAME = 'edxloggedin' EDXMKTG_COOKIE_NAME = 'edxloggedin'
MKTG_URLS = {'ROOT': '', MKTG_URLS = {
'ROOT': '',
'COURSES': '/courses/allschools/allsubjects/allcourses', 'COURSES': '/courses/allschools/allsubjects/allcourses',
'ABOUT': '/about-us', 'ABOUT': '/about-us',
'JOBS': '/jobs', 'JOBS': '/jobs',
...@@ -594,9 +595,12 @@ MKTG_URLS = {'ROOT': '', ...@@ -594,9 +595,12 @@ MKTG_URLS = {'ROOT': '',
'FAQ': '/student-faq', 'FAQ': '/student-faq',
'CONTACT': '/contact', 'CONTACT': '/contact',
'HOW_IT_WORKS': '/how-it-works', 'HOW_IT_WORKS': '/how-it-works',
'SCHOOLS': '/schools'} 'SCHOOLS': '/schools',
MKTG_URL_LINK_MAP = {'ABOUT': 'about_edx', }
MKTG_URL_LINK_MAP = {
'ABOUT': 'about_edx',
'CONTACT': 'contact', 'CONTACT': 'contact',
'FAQ': 'help_edx', 'FAQ': 'help_edx',
'COURSES': 'courses', 'COURSES': 'courses',
'ROOT': 'root'} 'ROOT': 'root',
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment