Say one has this simple model:
from django.db import models
class Foo(models.Model):
n = models.IntegerField()
In SQL you can perform an order by with a condition e.g.
select * from foo orber by n=7, n=17, n=3, n
This will sort the rows by first if n is 7, then if n is 14, then if n is 3, and then finally by n ascending.
How does one do the same with the Django ORM? It is not covered in their order_by docs.