How to omit object name from Django's TabularInline admin view?

后端 未结 6 1922
南方客
南方客 2021-02-01 14:33

I\'m using Django\'s TabularInline admin view to edit category objects related to a main topic object, as shown here:

6条回答
  •  無奈伤痛
    2021-02-01 15:12

    In case anyone is looking to hide the header on a StackedInline, I used Rick´s approach but adding this css:

    div.inline-related h3{
       visibility: hidden;
       height: 0;
    }
    

提交回复
热议问题