In my django project, I have a model with a Postgres DateTimeRangeField holding the time lapse between the start and the end of a long task. Something like this:
timespan = DateTimeRangeField()
Is it possible to use order_by on the queryset using either the lower or upper attributes of the range field?