Opened 18 years ago

Closed 18 years ago

Last modified 17 years ago

#1622 closed defect (fixed)

None

Reported by: Olive Owned by: Adrian Holovaty
Component: Forms Version: dev
Severity: normal Keywords: None
Cc: None Triage Stage: Design decision needed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

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 %}

Attachments (1)

m2m_ie_error.png (20.8 KB ) - added by Olive 18 years ago.
Admin M2M widget rendering under IE6.0

Download all attachments as: .zip

Change History (4)

comment:1 by James Bennett, 18 years ago

Could you explain in a bit more detail the problem you're seeing? Or, even better, attach a screenshot?

by Olive, 18 years ago

Attachment: m2m_ie_error.png added

Admin M2M widget rendering under IE6.0

comment:2 by Olive, 18 years ago

Resolution: fixed
Status: newclosed

This problem has disappeared with changeset 2709.

comment:3 by anonymous, 17 years ago

Cc: None added
Component: Admin interfacedjango.newforms
Keywords: None added
Summary: bad rendering of a set of manytomany widgets in admin change form using IE6.0None
Triage Stage: Ready for checkinDesign decision needed
Version: SVN
Note: See TracTickets for help on using tickets.
Back to Top