Opened 9 years ago
Closed 9 years ago
#26538 closed Bug (fixed)
BaseInlineFormSet Has Inconsistent Fields For Forms
Description ¶
Currently BaseInlineFormSet
appends the FK name for the formset to the fields for the form Meta
every time add_fields
runs, so the first form in the formset does not see the FK as a field on the form when it is instantiated. Subsequent forms in the formset will see the field since it is added to the form Meta
after add_fields
runs.
Change History (5)
comment:1 by , 9 years ago
comment:2 by , 9 years ago
Type: | Uncategorized → Bug |
---|
comment:3 by , 9 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:4 by , 9 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
Note:
See TracTickets
for help on using tickets.
Submitted PR #6503.