You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Form inputs may be associated with different forms. It allows creating "forms within forms".
Read a definition on [HTML spec](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fae-form).
One can specify the form the input will be associated with like this:
```python
sex = forms.ChoiceField(
widget=forms.RadioSelect(attrs={"form": "order-create-form"}),
choices=Order.SEX_CHOICES,
label=_("Sex"),
)
```
0 commit comments