Commit 13d29b8e by Diana Huang

Fix indentation of settings dictionaries.

parent 6110b54c
...@@ -586,17 +586,21 @@ INSTALLED_APPS = ( ...@@ -586,17 +586,21 @@ INSTALLED_APPS = (
######################### MARKETING SITE ############################### ######################### MARKETING SITE ###############################
EDXMKTG_COOKIE_NAME = 'edxloggedin' EDXMKTG_COOKIE_NAME = 'edxloggedin'
MKTG_URLS = {'ROOT': '', MKTG_URLS = {
'COURSES': '/courses/allschools/allsubjects/allcourses', 'ROOT': '',
'ABOUT': '/about-us', 'COURSES': '/courses/allschools/allsubjects/allcourses',
'JOBS': '/jobs', 'ABOUT': '/about-us',
'PRESS': '/in-the-news', 'JOBS': '/jobs',
'FAQ': '/student-faq', 'PRESS': '/in-the-news',
'CONTACT': '/contact', 'FAQ': '/student-faq',
'HOW_IT_WORKS': '/how-it-works', 'CONTACT': '/contact',
'SCHOOLS': '/schools'} 'HOW_IT_WORKS': '/how-it-works',
MKTG_URL_LINK_MAP = {'ABOUT': 'about_edx', 'SCHOOLS': '/schools',
'CONTACT': 'contact', }
'FAQ': 'help_edx', MKTG_URL_LINK_MAP = {
'COURSES': 'courses', 'ABOUT': 'about_edx',
'ROOT': 'root'} 'CONTACT': 'contact',
'FAQ': 'help_edx',
'COURSES': 'courses',
'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