I have the following models:
class Company(CachedModel): name = models.CharField(max_length=255) class UserExtendedProfile(CachedModel): company =
If you are simply trying to accomplish this for display purposes, take a look at: https://docs.djangoproject.com/en/1.8/ref/templates/builtins/#regroup
It lets you do just that inside the template.