dynamicweb2/datacenterlight/forms.py
2023-12-06 16:45:14 +05:30

9 lines
182 B
Python
Executable file

from django import forms
from .models import ContactUs
class ContactForm(forms.ModelForm):
class Meta:
fields = ['name', 'email', 'message']
model = ContactUs