[Answer]-Extra fields in django-userena, cannot retrieve value from a form

1👍

By doing self.fields.keyOrder[:-2] you are actually leaving out the last two fields. You should not slice the list.

new_order = self.fields.keyOrder

Leave a comment