Bugfix for #27

This commit is contained in:
tomtom5152
2015-03-26 14:16:03 +00:00
parent b46c0867ed
commit 534d82a7df
3 changed files with 8 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ from decimal import Decimal
# Create your models here.
class Profile(AbstractUser):
initials = models.CharField(max_length=5, unique=True, null=True, blank=True)
initials = models.CharField(max_length=5, unique=True, null=True, blank=False)
phone = models.CharField(max_length=13, null=True, blank=True)
@property