I have the following entries in my database:
`title` `status` Titanic WIP Avatar WIP Terminator Complete Abyss Default
I want to sort these objects by object status: by default, then by WIP, and then upon completion. Then the correct order is:
Abyss / Default Avatar / WIP Titanic / WIP Terminator / Complete
How do I make the next db call?
Title.objects.order_by(status='Default', status='WIP', status='Complete',title)
source share