Skip to content
Snippets Groups Projects
Unverified Commit da6c0d33 authored by Matt Hughes's avatar Matt Hughes Committed by GitHub
Browse files

Merge pull request #19819 from...

Merge pull request #19819 from edx/matthugs/add-masters-enrollment-to-instructor-dashboard-enrollment-breakdown

Add masters track to instr. dash. enrollment breakdown
parents bdd774eb 5dcc3d33
No related merge requests found
......@@ -24,6 +24,11 @@ from openedx.core.djangolib.markup import HTML, Text
<tr>
<th scope="row">${_("Professional")}</th><td>${modes['professional'] + modes['no-id-professional']}</td>
</tr>
%if modes['masters'] > 0:
<tr>
<th scope="row">${_("Master's")}</th><td>${modes['masters']}</td>
</tr>
%endif
<tr style="color:green;border-top:1px solid #000">
<th scope="row" style="padding-top:10px;">
<strong>${_("Total")}</strong>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment