Add datacenterlight app
This commit is contained in:
parent
9bb29884ca
commit
ad6696dd88
174 changed files with 15846 additions and 0 deletions
9
datacenterlight/forms.py
Executable file
9
datacenterlight/forms.py
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
from django import forms
|
||||
|
||||
from .models import ContactUs
|
||||
|
||||
|
||||
class ContactForm(forms.ModelForm):
|
||||
class Meta:
|
||||
fields = ['name', 'email', 'message']
|
||||
model = ContactUs
|
||||
Loading…
Add table
Add a link
Reference in a new issue