oscarmlage / django-cruds-adminlte

django-cruds is simple drop-in django app that creates CRUD for faster prototyping
BSD 3-Clause "New" or "Revised" License
425 stars 81 forks source link

Filter / Update #73

Open fjbardelli opened 6 years ago

fjbardelli commented 6 years ago

If I filter a list, and I do an update, when I return to the list the utl removes the filter parameter and returns the unfiltered list, the same happens if I use the search text box.

oscarmlage commented 6 years ago

Yep, filters are not being kept in the session by default. We would need a proposal for that, my questions:

What do you think it would be more usable?

fjbardelli commented 6 years ago

I think it was necessary to keep the filters and searches, always, in the update and delete, if for some reason you do not need them at the view level, you configure the option.

Like of paginatios and configurable, the way of work of the filters and searches also.