Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pagination in combination with filters #89

Closed
wants to merge 1 commit into from

Commits on Apr 14, 2020

  1. Fix pagination in combination with filters

    Both pagination and filters use query parameters to provide variables
    to backend. They both individually work ok but the parameters gets
    overwritten if used in combination. Eg apply some filters and select
    a particular page from the list of results. In this case once a page
    is selected then existing query parameters gets overwritten with the
    selected page and because of this filters also gets cleared.
    
    The fix is to append the variables instead of overwriting them which
    is implemented using custom template tags.
    saruniitr committed Apr 14, 2020
    Configuration menu
    Copy the full SHA
    822445e View commit details
    Browse the repository at this point in the history