I want to implement the followers/following feature in my Django application.
I\'ve an UserProfile class for every User (django.contrib
Set symmetrical to False in your Many2Many relation:
follows = models.ManyToManyField('self', related_name='follows', symmetrical=False)