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
d8b99e1e
Commit
d8b99e1e
authored
Mar 08, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make remote_gradebook use the new field instead of metadata
parent
c1a8c6de
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
common/lib/xmodule/xmodule/course_module.py
+1
-1
lms/templates/courseware/instructor_dashboard.html
+2
-2
No files found.
common/lib/xmodule/xmodule/course_module.py
View file @
d8b99e1e
...
...
@@ -175,7 +175,7 @@ class CourseDescriptor(SequenceDescriptor):
no_grade
=
Boolean
(
help
=
"True if this course isn't graded"
,
default
=
False
,
scope
=
Scope
.
settings
)
disable_progress_graph
=
Boolean
(
help
=
"True if this course shouldn't display the progress graph"
,
default
=
False
,
scope
=
Scope
.
settings
)
pdf_textbooks
=
List
(
help
=
"List of dictionaries containing pdf_textbook configuration"
,
default
=
None
,
scope
=
Scope
.
settings
)
remote_gradebook
=
String
(
scope
=
Scope
.
settings
,
default
=
''
)
remote_gradebook
=
Object
(
scope
=
Scope
.
settings
,
default
=
{}
)
allow_anonymous
=
Boolean
(
scope
=
Scope
.
settings
,
default
=
True
)
allow_anonymous_to_peers
=
Boolean
(
scope
=
Scope
.
settings
,
default
=
False
)
has_children
=
True
...
...
lms/templates/courseware/instructor_dashboard.html
View file @
d8b99e1e
...
...
@@ -113,7 +113,7 @@ function goto( mode)
%if settings.MITX_FEATURES.get('REMOTE_GRADEBOOK_URL','') and instructor_access:
<
%
rg =
course.
metadata.get('remote_gradebook',{})
rg =
course.
remote_gradebook
%
>
<h3>
Export grades to remote gradebook
</h3>
...
...
@@ -251,7 +251,7 @@ function goto( mode)
%if settings.MITX_FEATURES.get('REMOTE_GRADEBOOK_URL','') and instructor_access:
<
%
rg =
course.
metadata.get('remote_gradebook',{})
rg =
course.
remote_gradebook
%
>
<p>
Pull enrollment from remote gradebook
</p>
...
...
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