We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebdccae commit 9a51f58Copy full SHA for 9a51f58
course_discovery/apps/course_metadata/templates/admin/course_metadata/course_run.html
@@ -5,6 +5,19 @@
5
change-program-excluded-course-runs-form
6
{% endblock %}
7
8
+{% block extrastyle %}
9
+<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
10
+{% endblock %}
11
+
12
+{% block extrahead %}
13
+<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js"></script>
14
+<script>
15
+ document.addEventListener('DOMContentLoaded', function() {
16
+ $('.select2').select2();
17
+ });
18
+</script>
19
20
21
{% block content %}
22
<form class="form" method="post" action="">
23
{% csrf_token %}
@@ -30,4 +43,4 @@
30
43
</div>
31
44
32
45
</form>
33
-{% endblock %}
46
0 commit comments