mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-06-21 22:38:20 +02:00
Create team detail page
This commit is contained in:
@ -56,8 +56,7 @@ class Registration(PolymorphicModel):
|
||||
return isinstance(self, StudentRegistration) or isinstance(self, CoachRegistration)
|
||||
|
||||
def __str__(self):
|
||||
return _("registration of {first_name} {last_name}")\
|
||||
.format(first_name=self.user.first_name, last_name=self.user.last_name)
|
||||
return f"{self.user.first_name} {self.user.last_name}"
|
||||
|
||||
class Meta:
|
||||
verbose_name = _("registration")
|
||||
|
Reference in New Issue
Block a user