From b84fcb915590617c57a488fe531e93dea93d4c80 Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Sun, 10 Jul 2016 21:54:55 -0600 Subject: [PATCH] =?UTF-8?q?Redundant.=20=F0=9F=A4=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bikeshop_project/registration/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bikeshop_project/registration/models.py b/bikeshop_project/registration/models.py index a086e19..12f9826 100644 --- a/bikeshop_project/registration/models.py +++ b/bikeshop_project/registration/models.py @@ -94,10 +94,6 @@ class Member(models.Model): waiver = models.DateTimeField(null=True, blank=True) is_active = models.BooleanField(default=True) - @property - def full_name(self): - return '{0} {1}'.format(self.first_name, self.last_name) - def get_full_name(self): # The user is identified by their email address return '{0} {1}'.format(self.first_name, self.last_name)