[Answer]-Django search in db for similar entries my string name

1👍

You will have to learn some Javascript to learn how to interact with a search box on a page. You can write a django view to obtain the similar entries you need (it has to query the database). Make javascript call the django view (AJAX) to determine what entries to display.

0👍

I think you would need Haystack to do db search. To achieve the interactive search effect, you would also need javascript or jQuery to do Ajax calls.

👤Luca

Leave a comment