Opened 18 years ago

Closed 17 years ago

#2907 closed defect (wontfix)

[patch] Add <tbody> ... </tbody> in the table in edit_inline_tabular.html admin file

Reported by: anonymous Owned by: Adrian Holovaty
Component: contrib.admin Version: dev
Severity: trivial Keywords: html
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

in

root/django/trunk/django/contrib/admin/templates/admin/edit_inline_tabular.html

add <tbody> ... </tbody> in the table

Attachments (1)

add_tbody_patch.diff (724 bytes ) - added by l.oluyede@… 17 years ago.

Download all attachments as: .zip

Change History (4)

by l.oluyede@…, 17 years ago

Attachment: add_tbody_patch.diff added

comment:1 by l.oluyede@…, 17 years ago

Summary: Add <tbody> ... </tbody> in the table in edit_inline_tabular.html admin file[patch] Add <tbody> ... </tbody> in the table in edit_inline_tabular.html admin file

Accordingly to w3c specification the table need <tbody>, so I added.

comment:2 by Simon G. <dev@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

comment:3 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

The tbody for tables element is optional in both HTML 4 (note that it is marked as having "O" for both the start and end tag requirements in section 11.2.3 of the spec) and XHTML. So I think we can leave this patch out; it doesn't hurt anything to omit it and it makes it easier to keep newforms-admin and trunk admin in sync.

Note: See TracTickets for help on using tickets.
Back to Top