Update domain.py

This commit is contained in:
zandercymatics 2024-04-09 08:17:09 -06:00
parent ab2c097441
commit 2b2d71847b
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -182,6 +182,7 @@ class ContactForm(forms.ModelForm):
"""Form for updating contacts."""
email = forms.EmailField(max_length=None)
class Meta:
model = Contact
fields = ["first_name", "middle_name", "last_name", "title", "email", "phone"]