summaryrefslogtreecommitdiff
path: root/app/sightings/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/sightings/forms.py')
-rw-r--r--app/sightings/forms.py4
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')
}