From 30ccbff6ec79a3659c18d62f6a69dd1a762f30f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sun, 4 Mar 2012 09:28:25 +0100 Subject: [PATCH] These should not be shown on profile page --- accounts/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/accounts/forms.py b/accounts/forms.py index d285cbe0f..6e6886467 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -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: