Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
4c9066cf
Commit
4c9066cf
authored
Jan 23, 2017
by
Renzo Lucioni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use switch to pull programs from the catalog for the student dashboard
ECOM-4422
parent
c84eda42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
common/djangoapps/student/views.py
+3
-1
No files found.
common/djangoapps/student/views.py
View file @
4c9066cf
...
...
@@ -13,6 +13,7 @@ from django.views.generic import TemplateView
from
pytz
import
UTC
from
requests
import
HTTPError
from
ipware.ip
import
get_ip
import
waffle
import
edx_oauth2_provider
from
django.conf
import
settings
...
...
@@ -660,7 +661,8 @@ def dashboard(request):
# Find programs associated with courses being displayed. This information
# is passed in the template context to allow rendering of program-related
# information on the dashboard.
meter
=
programs_utils
.
ProgramProgressMeter
(
user
,
enrollments
=
course_enrollments
)
use_catalog
=
waffle
.
switch_is_active
(
'get_programs_from_catalog'
)
meter
=
programs_utils
.
ProgramProgressMeter
(
user
,
enrollments
=
course_enrollments
,
use_catalog
=
use_catalog
)
programs_by_run
=
meter
.
engaged_programs
(
by_run
=
True
)
# Construct a dictionary of course mode information
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment