Book.objects.all()
# Return all books published since 1990
Book.objects.filter(year_published__gt=1990)
# Return all books *not* written by Richard Dawkins
Book.objects.exclude(author='Richard Dawkins')
# Return all books, ordered by author name, then
# chronologically, with the newer ones first.
Book.objects.order_by('author', '-year_published')
# Return all book published after 1990, except for
# ones written by Richard Dawkins. Order them by
# author name, then chronologically, with the newer
# ones first.
Book.objects.filter(year_published__gt=1990) \
.exclude(author='Richard Dawkins') \
.order_by('author', '-year_published')
class Node(models.Model):
parent = models.ForeignKey(to='self', null=True, blank=True)
value = models.IntegerField()
def __unicode__(self):
return 'Node #{}'.format(self.id)
def get_ancestors(self):
if self.parent is None:
return []
return [self.parent] + self.parent.get_ancestors()
def get_larger_ancestors(self):
ancestors = self.get_ancestors()
return [node for node in ancestors if node.value > self.value]
def get_larger_ancestors(self):
return self.get_ancestors().filter(value__gt=self.value)
class Node(models.Model):
parent = models.ForeignKey(to='self', null=True, blank=True)
value = models.IntegerField()
def __unicode__(self):
return 'Node #{}'.format(self.id)
def get_ancestors(self):
if self.parent is None:
return Node.objects.none()
return Node.objects.filter(pk=self.parent.pk) | self.parent.get_ancestors()
def get_larger_ancestors(self):
return self.get_ancestors().filter(value__gt=self.value)
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有