Opened 13 years ago
Closed 11 years ago
#17927 closed New feature (fixed)
Initial values support for BaseGenericInlineFormSet
Reported by: | Evstifeev Roman | Owned by: | nobody |
---|---|---|---|
Component: | contrib.contenttypes | Version: | 1.4-beta-1 |
Severity: | Normal | Keywords: | |
Cc: | bmihelac@… | Triage Stage: | Accepted |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Fix for ticket #14574 (Initial values support for inline model formsets) only added initial values for BaseInlineFormSet, but BaseGenericInlineFormSet still doesn't have this functionality
Change History (4)
comment:1 by , 13 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 12 years ago
Cc: | added |
---|
comment:4 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
It might be as simple as adding
**kwargs
parameters to__init__
method, and passing them to super. To be tested...