Merge pull request #2850 from edx/sarina/lms-1548

Fix "Course started?" display on beta dash LMS-1548
This commit is contained in:
Sarina Canelake
2014-03-07 08:10:38 -05:00

View File

@@ -37,7 +37,7 @@
<li class="field text is-not-editable" id="field-course-started">
<label for="start-date">${_("Has the course started?")}</label>
<b>${_("Yes") if section_data['grade_cutoffs'] else _("No")}</b>
<b>${_("Yes") if section_data['has_started'] else _("No")}</b>
</li>