We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf56bf commit af6ffc9Copy full SHA for af6ffc9
democracylab/models.py
@@ -25,6 +25,10 @@ class Contributor(User):
25
qiqo_uuid = models.CharField(max_length=50, blank=True)
26
qiqo_signup_time = models.DateTimeField(null=True, blank=True)
27
28
+ def save(self, *args, **kwargs):
29
+ if self.first_name and self.last_name:
30
+ super(Contributor, self).save(*args, **kwargs)
31
+
32
def __str__(self):
33
return self.id_full_name()
34
0 commit comments