diff options
-rwxr-xr-x | profile/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
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) |