Re: registration forms.py

2012-02-20 Thread Stanwin Siow
>> The below method is an excerpt taken from the default registration forms.py >> with a few additional inputs. >> >> class RegistrationForm(forms.Form): >> >> keywords = forms.ModelMultipleChoiceField(queryset=Keyword.objects.all()) >> >&g

Re: registration forms.py

2012-02-19 Thread akaariai
On Feb 19, 1:42 pm, Stanwin Siow <stanwin.kts...@gmail.com> wrote: > Hello, > > The below method is an excerpt taken from the default registration forms.py > with a few additional inputs. > > class RegistrationForm(forms.Form): > >     keywords = forms.Mod

registration forms.py

2012-02-19 Thread Stanwin Siow
Hello, The below method is an excerpt taken from the default registration forms.py with a few additional inputs. class RegistrationForm(forms.Form): keywords = forms.ModelMultipleChoiceField(queryset=Keyword.objects.all()) def save(self, profile_callback=None