<https://github.com/GrafeasGroup/blossom/blob/350eb08af37d6da62ea5986712ab2892d9493441/blossom/authentication/models.py#L116-L128> When there are `null` entries for `complete_time` or `claim_time`, these actually appear first with the `-complete_time` and `-claim_time` orderings. So we need to explicitly filter out `null` entries, e.g. by using `complete_time__isnull=False`.
blossom/blossom/authentication/models.py
Lines 116 to 128 in 350eb08
When there are
nullentries forcomplete_timeorclaim_time, these actually appear first with the-complete_timeand-claim_timeorderings.So we need to explicitly filter out
nullentries, e.g. by usingcomplete_time__isnull=False.