Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Product(models.Model):
  2. price = models.FloatField()
  3. name = models.CharField(max_length=100)
  4. group = models.CharField(max_length=100)
  5.  
  6. Product.objects.order_by('group','price').distinct('group').order_by('price')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement