Commit 224d0074 by Nate Hardison

Merge pull request #96 from edx/nate/fix-missing-faq-route

Replace /faq route in LMS urls
parents ce70b00f b05ff885
...@@ -98,6 +98,8 @@ if not settings.MITX_FEATURES["USE_CUSTOM_THEME"]: ...@@ -98,6 +98,8 @@ if not settings.MITX_FEATURES["USE_CUSTOM_THEME"]:
url(r'^press$', 'student.views.press', name="press"), url(r'^press$', 'student.views.press', name="press"),
url(r'^media-kit$', 'static_template_view.views.render', url(r'^media-kit$', 'static_template_view.views.render',
{'template': 'media-kit.html'}, name="media-kit"), {'template': 'media-kit.html'}, name="media-kit"),
url(r'^faq$', 'static_template_view.views.render',
{'template': 'faq.html'}, name="faq_edx"),
url(r'^help$', 'static_template_view.views.render', url(r'^help$', 'static_template_view.views.render',
{'template': 'help.html'}, name="help_edx"), {'template': 'help.html'}, name="help_edx"),
...@@ -125,7 +127,7 @@ for key, value in settings.MKTG_URL_LINK_MAP.items(): ...@@ -125,7 +127,7 @@ for key, value in settings.MKTG_URL_LINK_MAP.items():
continue continue
# These urls are enabled separately # These urls are enabled separately
if key == "ROOT" or key == "COURSES": if key == "ROOT" or key == "COURSES" or key == "FAQ":
continue continue
# Make the assumptions that the templates are all in the same dir # Make the assumptions that the templates are all in the same dir
......
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