From 20278f0a8c5e4992b0642c32dc0b4667393e950a Mon Sep 17 00:00:00 2001 From: jpic <jamespic@gmail.com> Date: Sun, 27 Dec 2015 14:08:18 +0100 Subject: [PATCH] Enabled autocompletion on proposals --- representatives_votes/autocomplete_light_registry.py | 6 ++++++ setup.py | 1 + 2 files changed, 7 insertions(+) create mode 100644 representatives_votes/autocomplete_light_registry.py diff --git a/representatives_votes/autocomplete_light_registry.py b/representatives_votes/autocomplete_light_registry.py new file mode 100644 index 0000000..4b8242f --- /dev/null +++ b/representatives_votes/autocomplete_light_registry.py @@ -0,0 +1,6 @@ +import autocomplete_light.shortcuts as al + +from .models import Proposal + + +al.register(Proposal, search_fields=['title']) diff --git a/setup.py b/setup.py index bbf434f..d641258 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ setup( 'py-dateutil', 'pytz', 'ijson', + 'django-autocomplete-light', ], entry_points={ 'console_scripts': [ -- GitLab