19 lines
480 B
HTML
19 lines
480 B
HTML
<!DOCTYPE html>
|
|
<%! from django.utils.translation import ugettext as _ %>
|
|
<html lang="${LANGUAGE_CODE}">
|
|
<head>
|
|
## "edX" should not be translated
|
|
<%block name="pagetitle"></%block>
|
|
|
|
<script type="text/javascript" src="/static/js/vendor/jquery.min.js"></script>
|
|
<script type="text/javascript" src="/static/js/course_groups/cohorts.js"></script>
|
|
|
|
</head>
|
|
|
|
<body class="<%block name='bodyclass'/>">
|
|
<%include file="/course_groups/cohort_management.html" />
|
|
|
|
</body>
|
|
</html>
|
|
|