From d8806ddedc5da20a865c6fa0f68defd32df8e2c8 Mon Sep 17 00:00:00 2001 From: Nishanth Amuluru Date: Sat, 8 Jan 2011 01:44:49 +0530 Subject: Added a new field for full_name --- profile/models.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'profile/models.py') diff --git a/profile/models.py b/profile/models.py index 4d9d0ea..48e8dc5 100755 --- a/profile/models.py +++ b/profile/models.py @@ -20,6 +20,9 @@ class Profile(models.Model): uniq_key = models.CharField(max_length=20) + full_name = models.CharField(max_length=50, verbose_name="Name as on bank\ + account", help_text="Any DD/Cheque will be\ + issued on this name") user = models.ForeignKey(User, unique = True) rights = models.CharField(max_length = 2, choices = RIGHTS_CHOICES, default = u"CT") pynts = models.PositiveSmallIntegerField(default = 0) -- cgit