Add datacenterlight app

This commit is contained in:
M.Ravi 2023-12-06 16:45:14 +05:30
commit ad6696dd88
174 changed files with 15846 additions and 0 deletions

9
datacenterlight/forms.py Executable file
View 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