Opened 3 years ago

Last modified 3 years ago

#32999 closed Uncategorized

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

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

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 (1)

by Michael, 3 years ago

Attachment: notaligned.png added
Note: See TracTickets for help on using tickets.
Back to Top