Commit 545d5770 by chrisndodge

Merge pull request #871 from edx/fix/cdodge/re-enable-enrollment-start-stop

due to the MixedModuleStore pending release, we need to make enrollment ...
parents 5658e6bc 4a12cb60
...@@ -123,8 +123,8 @@ class CourseDetailsTestCase(CourseTestCase): ...@@ -123,8 +123,8 @@ class CourseDetailsTestCase(CourseTestCase):
self.assertContains(response, "Course Start Date") self.assertContains(response, "Course Start Date")
self.assertContains(response, "Course End Date") self.assertContains(response, "Course End Date")
self.assertNotContains(response, "Enrollment Start Date") self.assertContains(response, "Enrollment Start Date")
self.assertNotContains(response, "Enrollment End Date") self.assertContains(response, "Enrollment End Date")
self.assertContains(response, "not the dates shown on your course summary page") self.assertContains(response, "not the dates shown on your course summary page")
self.assertNotContains(response, "Introducing Your Course") self.assertNotContains(response, "Introducing Your Course")
......
...@@ -55,7 +55,7 @@ MITX_FEATURES = { ...@@ -55,7 +55,7 @@ MITX_FEATURES = {
# If set to True, new Studio users won't be able to author courses unless # If set to True, new Studio users won't be able to author courses unless
# edX has explicitly added them to the course creator group. # edX has explicitly added them to the course creator group.
'ENABLE_CREATOR_GROUP': False 'ENABLE_CREATOR_GROUP': False,
} }
ENABLE_JASMINE = False ENABLE_JASMINE = False
......
...@@ -152,7 +152,6 @@ from contentstore import utils ...@@ -152,7 +152,6 @@ from contentstore import utils
</li> </li>
</ol> </ol>
% if about_page_editable:
<ol class="list-input"> <ol class="list-input">
<li class="field-group field-group-enrollment-start" id="enrollment-start"> <li class="field-group field-group-enrollment-start" id="enrollment-start">
<div class="field date" id="field-enrollment-start-date"> <div class="field date" id="field-enrollment-start-date">
...@@ -182,7 +181,6 @@ from contentstore import utils ...@@ -182,7 +181,6 @@ from contentstore import utils
</div> </div>
</li> </li>
</ol> </ol>
% endif
% if not about_page_editable: % if not about_page_editable:
<div class="notice notice-incontext notice-workflow"> <div class="notice notice-incontext notice-workflow">
......
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