18 lines
No EOL
326 B
Python
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"
|
|
] |