This commit is contained in:
zandercymatics 2024-04-09 10:22:41 -06:00
parent ec371f1844
commit 82c3161646
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 27 additions and 4 deletions

View file

@ -68,12 +68,12 @@ class PublicContact(TimeStampedModel):
sp = models.CharField(null=False, help_text="Contact's state or province")
pc = models.CharField(null=False, help_text="Contact's postal code")
cc = models.CharField(null=False, help_text="Contact's country code")
email = models.EmailField(null=False, help_text="Contact's email address")
voice = models.CharField(
email = models.EmailField(
null=False,
help_text="Contact's phone number. Must be in ITU.E164.2005 format",
max_length=320,
help_text="Contact's email address",
max_length=320
)
voice = models.CharField(null=False, help_text="Contact's phone number. Must be in ITU.E164.2005 format")
fax = models.CharField(
null=True,
blank=True,