Hi, when your uncollapse the first time then the right list show only one entry (in fact it is a dropdown at this stage).
If you save without performing any other operation before, then only the shown entry will saved in the database (others entries will be LOST !). I you move one or more entry from a list to the other then the normal widget appearance is restored and a subsequent save operation works as expected. I had another issue with the rendering of these widget in IE 6, the only dirty workaround I've found is to add a <hr/> in admin/change_form.html: {% for bound_field_set in bound_field_sets %} <fieldset class="module aligned {{ bound_field_set.classes }}"> {% if bound_field_set.name %}<h2>{{ bound_field_set.name }}</h2>{% endif %} {% if bound_field_set.description %}<div class="description">{{ bound_field_set.description }}</div>{% endif %} {% for bound_field_line in bound_field_set %} {% admin_field_line bound_field_line %} {% for bound_field in bound_field_line %} {% filter_interface_script_maybe bound_field %} {% endfor %}<hr/> <========== {% endfor %} </fieldset> {% endfor %} Sorry I don't know how to post a ticket. Olivier. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---