IBAN and SIRET fields themselves are fine and validate ok, handing the numbers with or without spaces.
The issue is that in django admin markup, there is a maxlength on input preventing to actually use numbers with spaces. It's painful. So let's increase its value or drop that constraint.
Technically, the way may be a default widget override for relevant fields.
IBAN and SIRET fields themselves are fine and validate ok, handing the numbers with or without spaces.
The issue is that in django admin markup, there is a `maxlength` on input preventing to actually use numbers with spaces. It's painful. So let's increase its value or drop that constraint.
Technically, the way may be a default widget override for relevant fields.
IBAN and SIRET fields themselves are fine and validate ok, handing the numbers with or without spaces.
The issue is that in django admin markup, there is a
maxlength
on input preventing to actually use numbers with spaces. It's painful. So let's increase its value or drop that constraint.Technically, the way may be a default widget override for relevant fields.