Added a new field for full_name
authorNishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 01:44:49 +0530
changeset 299 8f50caa63cd1
parent 298 696309b5ad59
child 300 ce5f3cdbd545
Added a new field for full_name
profile/models.py
--- a/profile/models.py	Fri Jan 07 15:16:29 2011 +0530
+++ b/profile/models.py	Sat Jan 08 01:44:49 2011 +0530
@@ -20,6 +20,9 @@
     
     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)