forked from DGNum/gestioCOF
Make profile editable for non-COF user
Non-COF users can now edit their own profile Contrary to COF users they cannot change their mailing list settings
This commit is contained in:
parent
0814cfe1ef
commit
41256154ad
2 changed files with 10 additions and 2 deletions
|
@ -214,6 +214,12 @@ class UserForm(forms.ModelForm):
|
|||
fields = ["first_name", "last_name", "email"]
|
||||
|
||||
|
||||
class PhoneForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = CofProfile
|
||||
fields = ["phone"]
|
||||
|
||||
|
||||
class ProfileForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = CofProfile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue