но при сохранении followers_count остается равным нулю. В чем проблема?
class Community(models.Model):
title = models.CharField(max_length=60)
description = models.TextField()
followers = models.ManyToManyField(User)
followers_count = models.IntegerField(null=True, blank=True)
date = models.DateTimeField(default=datetime.datetime.now())
def save(self, *args, **kwargs):
super(Community, self).save(*args, **kwargs) # Firstly - simple saving
self.followers_count = self.followers.count()
super(Community, self).save(*args, **kwargs) # Then - followers saving
а followers.count() точно не равен 0 ?
Обсуждают сегодня