diff --git a/scipost_django/profiles/models.py b/scipost_django/profiles/models.py index a5a70141b4615802154ca6ace4c625d7463802e2..16fde268cd75b01aad22e84e860083ecb330b100 100644 --- a/scipost_django/profiles/models.py +++ b/scipost_django/profiles/models.py @@ -90,6 +90,10 @@ class Profile(models.Model): self.first_name, ) + @property + def full_name(self): + return f"{self.first_name} {self.last_name}" + @property def roles(self): try: