abhishek-ram / pyas2

This repo is no longer maintained and has been moved to https://github.com/abhishek-ram/django-pyas2
GNU General Public License v2.0
47 stars 23 forks source link

Message List Paging with Filters #22

Closed kurohai closed 8 years ago

kurohai commented 8 years ago

Paging on the messages list is broken when using filters. The next page link is hard-coded to use ?page=2. The link should also use all other URL queries to maintain filters.

Example: The URL for page 1 of inbound messages is /pyas2/message/?direction=IN. The next page button takes you to /pyas2/message/?page=2. It should instead take you to /pyas2/message/?direction=IN&page=2.

kurohai commented 8 years ago

Scratch that. I was using the older version before the Bootstrap template change.