예제 #1
0
파일: models.py 프로젝트: gawel/memopol2
 def save(self, *args, **kwargs):
     # if I'm modifyed and not created
     if Recommendation.objects.filter(pk=self.pk):
         clean_all_trends()
     super(Recommendation, self).save(*args, **kwargs)
예제 #2
0
파일: models.py 프로젝트: gawel/memopol2
 def save(self, *args, **kwargs):
     # if I'm modifyed and not created
     if Proposal.objects.filter(id=self.id):
         clean_all_trends()
     super(Proposal, self).save(*args, **kwargs)