-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP]: Add auto-complete for form fields #509
base: develop
Are you sure you want to change the base?
Conversation
Hello @bhilbert4, Thank you for submitting the Pull Request !
If you have not done so, please consult the |
Closes #436 |
Codecov Report
@@ Coverage Diff @@
## develop #509 +/- ##
===========================================
- Coverage 10.66% 10.63% -0.03%
===========================================
Files 57 57
Lines 4097 4108 +11
===========================================
Hits 437 437
- Misses 3660 3671 +11
|
django-autocomplete-lite tutorial - note that at the very bottom there is some information on performing autocomplete on a list of strings, which is what I think we want to do. The rest of the tutorial is for working on a queryset from a database. And here is the github test project that kinda-sorta goes with the tutorial |
This PR adds autocomplete to several of the fields on the webapp forms. This is done using django-autocomplete-lite, which is a new dependency.
At the moment this is work in progress. I've started by trying to apply autocomplete to the proposal search field on the web app's main page.
Other fields that could benefit from autocomplete include several on the EDB page.