Skip to content

Commit ba99163

Browse files
committed
Change school_select_form selects to select2
1 parent 20c3aec commit ba99163

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

oioioi/oi/static/oi/select2.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oioioi/oi/static/oi/select2.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oioioi/oi/templates/forms/school_select_form.html

+34-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
{% load i18n %}
1+
{% load i18n static %}
2+
3+
{% block head %}
4+
{% comment %} <link href="{% static 'oi/select2.min.css' %}" rel="stylesheet" />
5+
<script src="{% static 'oi/select2.min.js' %}"></script> {% endcomment %}
6+
7+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" />
8+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>
9+
10+
{% endblock head %}
11+
12+
{% block styles %}
13+
<style>
14+
.select2-container {
15+
width: 100% !important;
16+
}
17+
</style>
18+
{% endblock styles %}
19+
20+
221
{% for suffix, opts, selected in options %}
322
<p>
423
<select name="{{ attr.name }}{{ suffix }}" id="{{ attr.id }}{{ suffix }}">
@@ -15,3 +34,17 @@
1534
If you can not find your school on the list, please <button type="submit" class="btn btn-xs btn-link" name="_add_school">add it</button>.
1635
{% endblocktrans %}
1736
{% endif %}
37+
38+
{% block script %}
39+
<script>
40+
$(document).ready(function() {
41+
$('#id_school_province').select2();
42+
});
43+
$(document).ready(function() {
44+
$('#id_school_city').select2();
45+
});
46+
$(document).ready(function() {
47+
$('#id_school').select2();
48+
});
49+
</script>
50+
{% endblock script %}

0 commit comments

Comments
 (0)