Skip to content

Instantly share code, notes, and snippets.

@DanyF-github
Created March 24, 2022 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanyF-github/01d973db198f773c12b3ffb564af07f7 to your computer and use it in GitHub Desktop.
Save DanyF-github/01d973db198f773c12b3ffb564af07f7 to your computer and use it in GitHub Desktop.
django import forms
from .models import Lead
class LeadForm(forms.ModelForm):
class Meta:
model = Lead
fields = [
'first_name',
'last_name',
'age',
'facebook_id',
'phone_number',
'source',
'preferred_medium',
'agent'
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment