django datefield过滤器

时间:2009-11-12 13:16:18

标签: python django datetime filter

我想使用类似于以下

的对象过滤器
Shipment.objects.filter(date__gte=datetime.date(2005,1,1))

但是,似乎没有对datetime对象上的比较运算符的支持。有没有我不知道的方法,或者我应该考虑编写自定义过滤器。

1 个答案:

答案 0 :(得分:3)

我在我的代码中使用了很多日期比较,并且他们工作,例如从我的日历代码中复制了一个片段

q.filter(start_date__gt=pay_period.start_date).order_by("start_date")