(self, *args, **kwargs)
| 131 | return False |
| 132 | |
| 133 | def save(self, *args, **kwargs): |
| 134 | # Assign a public ID if missing and public = True |
| 135 | if self.public and self.public_id is None: |
| 136 | self.public_id = uuid.uuid4() |
| 137 | |
| 138 | super(Project, self).save(*args, **kwargs) |
| 139 | |
| 140 | class Meta: |
| 141 | verbose_name = _("Project") |