Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
1cecded3
Commit
1cecded3
authored
7 years ago
by
Rabia Iftikhar
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #14908 from edx/ri/TNL-6666-500-error-courseware
TNL-6666 Fix 500 error when entering courseware.
parents
2d4a564a
59d84e5b
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/djangoapps/courseware/views/index.py
+9
-3
9 additions, 3 deletions
lms/djangoapps/courseware/views/index.py
with
9 additions
and
3 deletions
lms/djangoapps/courseware/views/index.py
+
9
−
3
View file @
1cecded3
...
...
@@ -388,9 +388,15 @@ class CoursewareIndex(View):
if
self
.
section
.
position
and
self
.
section
.
has_children
:
display_items
=
self
.
section
.
get_display_items
()
if
display_items
:
courseware_context
[
'
sequence_title
'
]
=
display_items
[
self
.
section
.
position
-
1
]
\
.
display_name_with_default
try
:
courseware_context
[
'
sequence_title
'
]
=
display_items
[
self
.
section
.
position
-
1
]
\
.
display_name_with_default
except
IndexError
:
log
.
info
(
"
Course section {} with position {} and total section display items: {}
"
.
format
(
self
.
section
.
display_name_with_default
,
self
.
section
.
position
,
len
(
display_items
),
))
return
courseware_context
def
_add_entrance_exam_to_context
(
self
,
courseware_context
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment