Skip to content
Snippets Groups Projects
Commit aa82478e authored by Luc Saffre's avatar Luc Saffre
Browse files

bugfix #5050

parent b6650591
No related branches found
No related tags found
No related merge requests found
......@@ -47,10 +47,10 @@ class DailyPlannerRow(BabelDesignated, Sequenced, Plannable):
if obj is cls.HEADER_ROW:
return qs.filter(Q(start_time__isnull=True) | Q(end_date__isnull=False))
if obj.start_time:
return qs.filter(start_time__gte=obj.start_time,
qs = qs.filter(start_time__gte=obj.start_time,
start_time__isnull=False)
if obj.end_time:
return qs.filter(start_time__lt=obj.end_time,
qs = qs.filter(start_time__lt=obj.end_time,
start_time__isnull=False)
return qs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment