From 82859121a6285d212d6d42ec8a9b65cf02ee5991 Mon Sep 17 00:00:00 2001 From: Andrew Benedict Wallace Date: Wed, 5 Sep 2018 23:13:59 -0700 Subject: [PATCH] Update get_started.rst (#513) explicit import to help us find Select2MultipleWidget --- docs/get_started.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/get_started.rst b/docs/get_started.rst index 894fdb4..d545c79 100644 --- a/docs/get_started.rst +++ b/docs/get_started.rst @@ -39,6 +39,8 @@ Replacing:: with:: + from django_select2.forms import Select2MultipleWidget + class MyForm(forms.Form): things = ModelMultipleChoiceField(queryset=Thing.objects.all(), widget=Select2MultipleWidget)