farhan0581 / django-admin-autocomplete-filter

A simple Django app to render list filters in django admin using autocomplete widget.
GNU General Public License v3.0
351 stars 75 forks source link

Dependent filters #90

Open YolCruz opened 1 year ago

YolCruz commented 1 year ago

This PR allows for autocomplete filters to receive the GET params from the parent URL so that autocomplete filters can work with other filters.

Example: Given a User list, If you add an autocomplete filter for "State", you can add another autocomplete filter for "City" that only shows cities for the previously selected State.