#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)
Change History (4)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
This problem has disappeared with changeset 2709.
comment:3 by , 18 years ago
| Cc: | added |
|---|---|
| Component: | Admin interface → django.newforms |
| Keywords: | None added |
| Summary: | bad rendering of a set of manytomany widgets in admin change form using IE6.0 → None |
| Triage Stage: | Ready for checkin → Design decision needed |
| Version: | → SVN |
Could you explain in a bit more detail the problem you're seeing? Or, even better, attach a screenshot?