﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32999	Admin Tabular Stacked Inline widget headings are not aligned headings	Michael	nobody	"[[https://code.djangoproject.com/attachment/ticket/32999/inline%20tabular.png]]

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.

Another issue is if the stacktabular has many fields:
Instead of the stacked tabular getting overflow x scroll, the whole page does:
[[https://code.djangoproject.com/attachment/ticket/32999/notaligned.png]]"	Uncategorized	new	contrib.admin	3.2	Normal		tabularinline css style styling		Unreviewed	0	0	0	0	1	0
