ViewFlow and django-guardian
问题 I want to make use of django-guardian 's object permissions and grant specific rights for specific users to one or more Django users. I have tried to add some permissions to my Process class like this: class TestProcess(Process): title = models.CharField(max_length=64) something = models.ForeignKey(ForInheritage, null=True, on_delete=models.CASCADE) no_approval = models.BooleanField(default=False) approved = models.BooleanField(default=False) def something_is_approved(self): try: return self