Is there a way to put the delete button on the left side? i try to use ordering
but it doesnt work because delete is not part of the model
here is my admin.py
class CategoryInline(admin.TabularInline):
model = Category
extra = 0
class SurveyAdmin(admin.ModelAdmin):
list_display = ("name", "is_published")
inlines = [CategoryInline, QuestionInline]