From 79dc33e1258c7c65b581d1496de801c47f1cab4f Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Wed, 29 Sep 2021 16:04:09 +0200 Subject: [PATCH] test working, but still problems with project.pid --- input/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/models.py b/input/models.py index 8745a31..423e7fb 100644 --- a/input/models.py +++ b/input/models.py @@ -89,7 +89,7 @@ class Project(Volunteer): def save(self,*args,**kwargs): # is there a way to call super().save() only once? print(f'1: {self.id}') - super().save(*args,**kwargs) + #super().save(*args,**kwargs) print(f'2: {self.id}') self.pid = str(self.account) + str(self.pk).zfill(3) print(f'3: {self.id}')