add leading zeros to project PID

This commit is contained in:
Benni Bärmann 2021-02-02 14:42:34 +01:00
parent 079c1c3933
commit fd00d1b67a
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Project(Volunteer):
def save(self,*args,**kwargs):
# is there a way to call super().save() only once?
super().save(*args,*kwargs)
self.pid = self.account + str(self.pk)
self.pid = self.account + str(self.pk).zfill(3)
super().save(*args,*kwargs)
def __str__(self):