Opened 3 years ago

Last modified 3 years ago

#32999 closed Uncategorized

Admin Tabular Stacked Inline widget headings are not aligned headings — at Version 1

Reported by: Michael Owned by: nobody
Component: contrib.admin Version: 3.2
Severity: Normal Keywords: tabularinline css style styling
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description (last modified by Michael)

See the attached pic.

With the following model:

class ApplicantAdmin(admin.TabularInline):
    model = Application.applicant_set.through

@admin.register(Application)
class ApplicationAdmin(admin.ModelAdmin):
    exclude = ('applicant_set', )
    inlines = (ApplicantAdmin, )

The heading Delete? is on the left, however the delete button is on the right, making it confusing for some people.

Change History (2)

by Michael, 3 years ago

Attachment: notaligned.png added

comment:1 by Michael, 3 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top