mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-22 07:52:15 +00:00
Removed unecessary for loop. Changed registration complete text. Profile model changes.
This commit is contained in:
@@ -6,7 +6,7 @@ import reversion
|
||||
|
||||
# Create your models here.
|
||||
class Profile(AbstractUser):
|
||||
initials = models.CharField(max_length=5, unique=True)
|
||||
initials = models.CharField(max_length=5, unique=True, null=True, blank=True)
|
||||
phone = models.CharField(max_length=13, null=True, blank=True)
|
||||
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user