theduke
theduke

Reputation: 3195

Django - table that can be filtered

I have been looking for a Django app that allows me to create lists of database models that can be sorted, paged and FILTERED.

django-tables2 seems to be a popular app that handles paging and sorting, but not filtering.

To clarify: I would like to have a form for filtering the list by certain attributes, like minimal price, maximum price, etc.

There has to be some app out there that does this, right?

Thanks in advance.

Upvotes: 0

Views: 104

Answers (1)

Magda
Magda

Reputation: 1248

We use django-filter. Maybe that is right for you as well? https://django-filter.readthedocs.org/en/latest/index.html

Upvotes: 1

Related Questions