Commit 7e55d5eb by Calen Pennington

Merge remote-tracking branch 'edx/master' into opaque-keys-merge-master

parents 40e7cab8 df3d6e3b
...@@ -145,4 +145,4 @@ John Cox <johncox@google.com> ...@@ -145,4 +145,4 @@ John Cox <johncox@google.com>
Ben Weeks <benweeks@mit.edu> Ben Weeks <benweeks@mit.edu>
David Bodor <david.gabor.bodor@gmail.com> David Bodor <david.gabor.bodor@gmail.com>
Sébastien Hinderer <Sebastien.Hinderer@inria.fr> Sébastien Hinderer <Sebastien.Hinderer@inria.fr>
Kristin Stephens <ksteph@cs.berkeley.edu>
...@@ -21,6 +21,8 @@ log = logging.getLogger('edx.' + __name__) ...@@ -21,6 +21,8 @@ log = logging.getLogger('edx.' + __name__)
class SplitTestFields(object): class SplitTestFields(object):
"""Fields needed for split test module""" """Fields needed for split test module"""
has_children = True
user_partition_id = Integer( user_partition_id = Integer(
help="Which user partition is used for this test", help="Which user partition is used for this test",
scope=Scope.content scope=Scope.content
......
...@@ -56,7 +56,7 @@ def dashboard(request): ...@@ -56,7 +56,7 @@ def dashboard(request):
# table queries need not take the form of raw SQL, but do in this case since # table queries need not take the form of raw SQL, but do in this case since
# the MySQL backend for django isn't very friendly with group by or distinct # the MySQL backend for django isn't very friendly with group by or distinct
table_queries = {} table_queries = {}
table_queries["course enrollments"] = """ table_queries["course registrations (current enrollments)"] = """
select select
course_id as Course, course_id as Course,
count(user_id) as Students count(user_id) as Students
......
...@@ -390,6 +390,7 @@ ...@@ -390,6 +390,7 @@
img { img {
width: 100%; width: 100%;
min-height: 100%;
} }
} }
......
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