Skip to content
Snippets Groups Projects
Commit 13d29b8e authored by Diana Huang's avatar Diana Huang
Browse files

Fix indentation of settings dictionaries.

parent 6110b54c
No related branches found
No related tags found
No related merge requests found
......@@ -586,17 +586,21 @@ INSTALLED_APPS = (
######################### MARKETING SITE ###############################
EDXMKTG_COOKIE_NAME = 'edxloggedin'
MKTG_URLS = {'ROOT': '',
'COURSES': '/courses/allschools/allsubjects/allcourses',
'ABOUT': '/about-us',
'JOBS': '/jobs',
'PRESS': '/in-the-news',
'FAQ': '/student-faq',
'CONTACT': '/contact',
'HOW_IT_WORKS': '/how-it-works',
'SCHOOLS': '/schools'}
MKTG_URL_LINK_MAP = {'ABOUT': 'about_edx',
'CONTACT': 'contact',
'FAQ': 'help_edx',
'COURSES': 'courses',
'ROOT': 'root'}
MKTG_URLS = {
'ROOT': '',
'COURSES': '/courses/allschools/allsubjects/allcourses',
'ABOUT': '/about-us',
'JOBS': '/jobs',
'PRESS': '/in-the-news',
'FAQ': '/student-faq',
'CONTACT': '/contact',
'HOW_IT_WORKS': '/how-it-works',
'SCHOOLS': '/schools',
}
MKTG_URL_LINK_MAP = {
'ABOUT': 'about_edx',
'CONTACT': 'contact',
'FAQ': 'help_edx',
'COURSES': 'courses',
'ROOT': 'root',
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment