Let's say there is a model with a default order described in the Meta class p>
class People(models.Model):
first_name = models.CharField(max_length=100)
last_name = models.CharField(max_length=100)
middle_name = models.CharField(max_length=100)
class Meta:
ordering = (last_name, first_name)
Is there a way to get an unordered querryset
source
share