Guest User

Untitled

a guest
Jul 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ordering_string = "size,-price"
  2.  
  3. shoes = ShoesModel.objects.some_kind_of_filter.order_by('size', '-price')
  4.  
  5. shoes = ShoesModel.objects.some_kind_of_filter.order_by(*('size', '-price'))
Add Comment
Please, Sign In to add comment