Private
Public Access
1
0
This commit is contained in:
2024-05-22 20:11:35 +02:00
parent a604fda3cc
commit fe620031dc
4 changed files with 121 additions and 126 deletions

View File

@@ -236,7 +236,7 @@ class SearchForm(forms.Form):
# simple form for Contact page. Sends email to info@rowsandall.com
class EmailForm(forms.Form):
firstname = forms.CharField(max_length=255)
lastname = forms.CharField(max_length=255)
lastname = forms.CharField(max_length=255, required=False)
email = forms.EmailField()
subject = forms.CharField(max_length=255)
message = forms.CharField(widget=forms.Textarea())