idlesign / django-sitegate

Reusable application for Django to ease sign up & sign in processes
https://github.com/idlesign/django-sitegate
BSD 3-Clause "New" or "Revised" License
34 stars 4 forks source link

AttributeError: 'OrderedDict' object has no attribute 'insert' #8

Closed imposeren closed 10 years ago

imposeren commented 10 years ago
self.fields.insert(1, 'email', forms.EmailField(label=_('Email')))

Using django 1.7 self.fields is OrderedDict instance without insert method

imposeren commented 10 years ago

explicit fields definition will solve the problem: https://github.com/imposeren/django-sitegate/commit/6041e572f0a05814cebfc4f25d4eef2315c7dc03

imposeren commented 10 years ago

https://github.com/idlesign/django-sitegate/pull/9