Commit fba74adf by Sylvia Pearce Committed by GitHub

Merge pull request #13490 from edx/sylvia/lms_help_fixes

LMS context sensitive help minor fixes
parents 88297788 a448d74f
...@@ -17,8 +17,7 @@ pdf_file = open-edx-learner-guide.pdf ...@@ -17,8 +17,7 @@ pdf_file = open-edx-learner-guide.pdf
[pages] [pages]
default = index.html default = index.html
instructor = SFD_instructor_dash_help.html
instructor = index.html
course = index.html course = index.html
...@@ -32,10 +31,17 @@ progress = SFD_check_progress.html ...@@ -32,10 +31,17 @@ progress = SFD_check_progress.html
learneraccountsettings = sfd_dashboard_profile/SFD_dashboard_settings_profile.html#exploring-the-account-settings-page learneraccountsettings = sfd_dashboard_profile/SFD_dashboard_settings_profile.html#exploring-the-account-settings-page
learnerdashboard = sfd_dashboard_profile/SFD_dashboard_settings_profile.html#exploring-the-learner-dashboard learnerdashboard = sfd_dashboard_profile/SFD_dashboard_settings_profile.html#exploring-the-dashboard
programs = SFD_enrolling.html#programs
bookmarks = SFD_bookmarks.html bookmarks = SFD_bookmarks.html
notes = SFD_notes.html
wiki = SFD_wiki.html
discussions = sfd_discussions/index.html
# below are the language directory names for the different locales # below are the language directory names for the different locales
[locales] [locales]
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
<%page expression_filter="h"/> <%page expression_filter="h"/>
<%inherit file="../main.html" /> <%inherit file="../main.html" />
<%namespace name='static' file='../static_content.html'/> <%namespace name='static' file='../static_content.html'/>
<%def name="online_help_token()"><% return "discussions" %></%def>
<%! <%!
import json import json
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
......
<%page expression_filter="h"/> <%page expression_filter="h"/>
<%inherit file="/main.html" /> <%inherit file="/main.html" />
<%namespace name='static' file='/static_content.html'/> <%namespace name='static' file='/static_content.html'/>
<%def name="online_help_token()"><% return "notes" %></%def>
<%! <%!
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from edxnotes.helpers import NoteJSONEncoder from edxnotes.helpers import NoteJSONEncoder
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
<%page expression_filter="h"/> <%page expression_filter="h"/>
<%inherit file="../main.html" /> <%inherit file="../main.html" />
<%namespace name='static' file='../static_content.html'/> <%namespace name='static' file='../static_content.html'/>
<%def name="online_help_token()"><% return "programs" %></%def>
<%! <%!
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from openedx.core.djangolib.js_utils import ( from openedx.core.djangolib.js_utils import (
......
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