Getting Started¶
Requirements¶
- Python >= 3.5
- Django >= 2.1
- jquery >= 1.9
Installation¶
Install using pip:
pip install django-typeaheadAdd
django_typeaheadto the list ofINSTALLED_APPSin yoursettings.pyfile:INSTALLED_APPS = [ # ... 'django_typeahead', ]
Warning
This installation instruction assumes you have
jQueryand Bootstrap JS/CSS files present in your template and you are usingform.mediain your django template. If not you should checkout our usage instructions which covers almost everything you need to get the widget running.