<p>On Django, be careful when paginating querysets. Make sure your order_by always return consistent ordering, otherwise you might have subtle bugs in page transitions. For example, <code>.order_by('title')</code> isn't enough if items may have repeated titles. Do a <code>.order_by('title', 'created')</code> or a <code>.order_by('title', 'id')</code> instead to guarantee the order won't vary on different queries.</p>
By clicking “Accept all”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage and assist in our marketing efforts. Check our privacy policies.