annuaire-eleves/fiches/forms.py
2020-01-15 20:58:10 +01:00

18 lines
No EOL
326 B
Python

from django import forms
from fiches.models import Profile
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
fields = [
"full_name",
"nickname",
"picture",
"department",
"promotion",
"birth_date",
"thurne",
"text_field",
"printing",
"keep_me"
]