I have two models defined loosely like this:
class InformationUnit(models.Model): username = models.CharField(max_length=255) project = models.Foreig
Project.objects.all().annotate(Count('informationunit__username', distinct=True))