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
0b161998
Commit
0b161998
authored
Dec 11, 2013
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fix missing _ import."
This reverts commit
82d7da82
.
parent
82d7da82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lms/djangoapps/instructor/views/legacy.py
+2
-2
No files found.
lms/djangoapps/instructor/views/legacy.py
View file @
0b161998
...
...
@@ -510,12 +510,12 @@ def instructor_dashboard(request, course_id):
elif
'List course staff'
in
action
:
role
=
CourseStaffRole
(
course
.
location
)
datatable
=
_role_members_table
(
role
,
_
u
(
"List of Staff"
),
course_id
)
datatable
=
_role_members_table
(
role
,
_
(
"List of Staff"
),
course_id
)
track
.
views
.
server_track
(
request
,
"list-staff"
,
{},
page
=
"idashboard"
)
elif
'List course instructors'
in
action
and
GlobalStaff
()
.
has_user
(
request
.
user
):
role
=
CourseInstructorRole
(
course
.
location
)
datatable
=
_role_members_table
(
role
,
_
u
(
"List of Instructors"
),
course_id
)
datatable
=
_role_members_table
(
role
,
_
(
"List of Instructors"
),
course_id
)
track
.
views
.
server_track
(
request
,
"list-instructors"
,
{},
page
=
"idashboard"
)
elif
action
==
'Add course staff'
:
...
...
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