initial
This commit is contained in:
13
service/forms.py
Normal file
13
service/forms.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django import forms
|
||||
from service.models import *
|
||||
|
||||
# Service Page SEO Form
|
||||
class servicePageSEOForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = servicePageSEO
|
||||
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