Based on django ModelAdmin document for filterize list data, exist some class in admin that making filters, like DateFieldListFilter, ChoicesFieldListFilter and etc,
But dosent exist any class for text input field.
I need to use several text input fields for filter my model list data in admin page. What can i do?
Something explained here would be helpful https://hakibenita.com/how-to-add-a-text-filter-to-django-admin
and you need to override template
usage
https://gist.githubusercontent.com/hakib/1491a848e71078dae81fca48c46cc258/raw/19934611bcdd6d806aabaf00f55f582cd40fffd8/input_filter.html
https://gist.githubusercontent.com/hakib/1491a848e71078dae81fca48c46cc258/raw/19934611bcdd6d806aabaf00f55f582cd40fffd8/admin.py
all credits to owner of this post