diff options
Diffstat (limited to 'app/sightings/forms.py')
-rw-r--r-- | app/sightings/forms.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/sightings/forms.py b/app/sightings/forms.py index 9be7dcc..bbc471f 100644 --- a/app/sightings/forms.py +++ b/app/sightings/forms.py @@ -8,7 +8,5 @@ class SightingsForm(autocomplete.FutureModelForm): model = Sighting fields = ('ap', 'point', ) widgets = { - 'ap': autocomplete.TaggitSelect2( - 'ap-autocomplete' - ) + 'ap': autocomplete.ModelSelect2(url='ap-autocomplete') } |