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" ]