added blank to fax field

This commit is contained in:
CocoByte 2024-03-06 15:13:42 -07:00
parent 2ee3df91b9
commit c73e7179bc
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F

View file

@ -72,6 +72,7 @@ class PublicContact(TimeStampedModel):
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,
help_text="Contact's fax number (null ok). Must be in ITU.E164.2005 format.",
)
pw = models.CharField(null=False, help_text="Contact's authorization code. 16 characters minimum.")