I have list pages showing event that can be filtered by city, I'm also using Django paginator. My issue is how do I persist the filter when on another page?
example view.py not actual code..
event_list = Event.objects.filter(city=something)
paginator = Paginator(event_list, 1) # Show 25 contacts per page