initial
This commit is contained in:
28
contact/forms.py
Normal file
28
contact/forms.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from django import forms
|
||||
from contact.models import *
|
||||
|
||||
# # # # # # # # # # # # # # # # # #
|
||||
# Contact Form #
|
||||
# # # # # # # # # # # # # # # # # #
|
||||
class ContactForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Contact
|
||||
fields = '__all__'
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
for field in self.fields.values():
|
||||
field.widget.attrs['class'] = 'form-control'
|
||||
|
||||
# # # # # # # # # # # # # # # # # #
|
||||
# Contact Page SEO Form #
|
||||
# # # # # # # # # # # # # # # # # #
|
||||
class contactPageSEOForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = contactPageSEO
|
||||
fields = '__all__'
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
for field in self.fields.values():
|
||||
field.widget.attrs['class'] = 'form-control'
|
||||
Reference in New Issue
Block a user