﻿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
36069	"The position of the ""X"" button for the InlineForm in TabularInline differs depending on the can_delete value."	Antoliny	Antoliny	"{{{
class CommentInline(admin.TabularInline):
    model = Comment
    extra = 1
    can_delete = False

class TagInline(admin.TabularInline):
    model = Tag
    extra = 1


class PostAdmin(admin.ModelAdmin):
    inlines = [CommentInline, TagInline]
}}}
When can_delete is set to False in TabularInline, remove button of the InlineForm moves to the bottom (it should be at the top originally).
[[Image(tabular_inline_delete_button.png)]]"	Bug	closed	contrib.admin	dev	Normal	fixed	TabularInline		Ready for checkin	1	0	0	0	1	0
