Commit 42ce6b96 by Peter Fogg

Merge pull request #10446 from edx/peter-fogg/hide-studio-due-date

Hide Xblock due dates in studio for self-paced courses.
parents 847797da 709758e4
......@@ -165,7 +165,7 @@ if (is_proctored_exam) {
<span class="sr status-grading-label"> <%= gettext('Graded as:') %> </span>
<i class="icon fa fa-check"></i>
<span class="status-grading-value"> <%= gradingType %> </span>
<% if (xblockInfo.get('due_date')) { %>
<% if (xblockInfo.get('due_date') && !course.get('self_paced')) { %>
<span class="status-grading-date"> <%= gettext('Due:') %> <%= xblockInfo.get('due_date') %> </span>
<% } %>
</p>
......
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