Skip to content
Advertisement

Django forms.Form reflecting property field constraints

I’m implementing a Django Form witch should contain the field ‘fieldA’ from modelA:

JavaScript

My question is: Is there a way to have Django form, which will automatically handle validation of fieldA (check the max_length)? I know I Could use form.ModelFormclass referring to ModelA, but then the form would reflect all the fields of the ModelA. I would like to use simple forms.Form.

I’m looking for a solution like:

JavaScript

Advertisement

Answer

I found a way how to achieve a validation of form Field reflecting constrains from model Field.

JavaScript

Like this, the form will respect the max_length validator of attribute x or any other validator defined.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement