Ordering Django QuerySets by fields of related objects

In one of my Django applications I recently needed to sort a QuerySet by a field of a related object. And despite the fact that there is some documentation available it took me quite a while to solve the problem. In the end it was about one little detail and …