These should not be shown on profile page

This commit is contained in:
Michal Čihař 2012-03-04 09:28:25 +01:00
parent a0e5e12b10
commit 30ccbff6ec

View File

@ -6,6 +6,10 @@ from django.contrib.auth.models import User
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
exclude = [
'suggested',
'translated',
]
class UserForm(forms.ModelForm):
class Meta: