#20929: inline_formset - DELETE field is in visible_fields
-------------------------------+--------------------------------------
     Reporter:  RLion          |                    Owner:  nobody
         Type:  Uncategorized  |                   Status:  new
    Component:  Forms          |                  Version:  1.5
     Severity:  Normal         |               Resolution:
     Keywords:                 |             Triage Stage:  Unreviewed
    Has patch:  0              |      Needs documentation:  0
  Needs tests:  0              |  Patch needs improvement:  0
Easy pickings:  0              |                    UI/UX:  0
-------------------------------+--------------------------------------
Changes (by timo):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


Comment:

 I can't reproduce the `DELETE` field rendering with `input type="hidden"`.
 For example, modifying
 `tests.inline_formsets.tests.DeletionTests.test_deletion`:

 {{{
     PoemFormSet = inlineformset_factory(Poet, Poem, can_delete=True,
 fields="__all__")

     for form in formset.forms:
         print [str(field) for field in form.visible_fields()]

     ['<input id="id_poem_set-0-name" maxlength="100"
 name="poem_set-0-name" type="text" />',
       '<input id="id_poem_set-0-DELETE" name="poem_set-0-DELETE"
 type="checkbox" />']
 }}}

 Am I missing something?

-- 
Ticket URL: <https://code.djangoproject.com/ticket/20929#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/063.106b0ad3fac50084c0530fff448e5775%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to