diff gpp/bio/forms.py @ 31:5eed5e7c1c98

Remove fields in the user profile that were superceded by the django-elsewhere application: website, icq, aim, etc.
author Brian Neal <bgneal@gmail.com>
date Sun, 03 May 2009 20:27:57 +0000
parents f408971657b9
children c0d3b09c9b95
line wrap: on
line diff
--- a/gpp/bio/forms.py	Sun May 03 20:18:14 2009 +0000
+++ b/gpp/bio/forms.py	Sun May 03 20:27:57 2009 +0000
@@ -30,9 +30,6 @@
     location = forms.CharField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
     occupation = forms.CharField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
     interests = forms.CharField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
-    website_1 = forms.URLField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
-    website_2 = forms.URLField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
-    website_3 = forms.URLField(required=False, widget=forms.TextInput(attrs={'size' : 64 }))
 
     class Meta:
         model = UserProfile
@@ -109,4 +106,3 @@
     def get_filename(self):
         return self.cleaned_data['avatar_file'].name
 
-# vim: ts=4 sw=4