Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread willyhakim
Thank you guys. On Wednesday, April 15, 2015 at 5:41:47 PM UTC-5, willyhakim wrote: > > Hi everyone, > I am using django-userena and extend the form class to add some of my own > fields. I followed > the demo and still get the above error. Anyone know what I am doing wrong? > > class

Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread Pavel Kuchin
Yeah, sorry:) 2015-04-16 16:04 GMT+03:00 Vijay Khemlani : > Why are you talking to me? I'm not OP xD > > On Thu, Apr 16, 2015 at 9:57 AM, Pavel Kuchin > wrote: >> >> Hi Vijay, >> >> Looks like Django does not use SortedDict anymore >> >>

Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread Vijay Khemlani
Why are you talking to me? I'm not OP xD On Thu, Apr 16, 2015 at 9:57 AM, Pavel Kuchin wrote: > Hi Vijay, > > Looks like Django does not use SortedDict anymore > ( > https://github.com/django/django/commit/07876cf02b6db453ca0397c29c225668872fa96d#django/forms/forms.py

Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread Pavel Kuchin
Hi Vijay, Looks like Django does not use SortedDict anymore (https://github.com/django/django/commit/07876cf02b6db453ca0397c29c225668872fa96d#django/forms/forms.py) The self.fields.keyOrder does not work anymore, django-userena has an obsolete documentation. Try to remove def __init__(self,

Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread Vijay Khemlani
In the title: "'OrderedDict' object has no attribute 'keyOrder'" On Thu, Apr 16, 2015 at 6:13 AM, Pavel Kuchin wrote: > Hi Willy, > > Can you send an error, because I see only the SignupFormExtra class. > > Yours sincerely, > Pavel > > четверг, 16 апреля 2015 г.,

Re: Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-16 Thread Pavel Kuchin
Hi Willy, Can you send an error, because I see only the SignupFormExtra class. Yours sincerely, Pavel четверг, 16 апреля 2015 г., 1:41:47 UTC+3 пользователь willyhakim написал: > > Hi everyone, > I am using django-userena and extend the form class to add some of my own > fields. I followed >

Django Userena 'OrderedDict' object has no attribute 'keyOrder'

2015-04-15 Thread willyhakim
Hi everyone, I am using django-userena and extend the form class to add some of my own fields. I followed the demo and still get the above error. Anyone know what I am doing wrong? class SignupFormExtra(SignupForm): """ A form to demonstrate how to add extra fields to the signup form,