Skip to content

Instantly share code, notes, and snippets.

@bicknest
Last active May 7, 2020 23:01
Show Gist options
  • Save bicknest/16f52246e0d882ddbe99cc7a3403921d to your computer and use it in GitHub Desktop.
Save bicknest/16f52246e0d882ddbe99cc7a3403921d to your computer and use it in GitHub Desktop.
Profile ModelForm
from django import forms
class ProfileForm(forms.ModelForm):
class Meta:
model = core.models.Profile
fields = ['name', 'age', 'phone_number', 'business']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment