<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>