当前我的django管理网站的设置如下
Topic
submit_date: 2018/09/25
submit_user: blah
Topic-category1
sub-topic field1 field2
---------------------------------
bleh bleh1 bleh2
mlem mlem1 mlem2
Topic-category2
something something1 something2
---------------------------------------
asd asd1 asd2
asd2 asd2-1 asd2-2
我想在Topic-category1
和表格之间添加一个注释部分,看起来像
Topic-category1
<this is where the note goes, functions like description>
sub-topic field1 field2
---------------------------------
bleh bleh1 bleh2
mlem mlem1 mlem2
django管理员有办法吗?我没有使用任何自定义表单。仅使用ModelAdmin
并在各处修改变量
答案 0 :(得分:0)
好吧,如果没有针对Django Admin的自定义表单,我将无法做到。
https://docs.djangoproject.com/en/2.1/ref/contrib/admin/#django.contrib.admin.ModelAdmin.fieldsets
我可以使用Main_model.php
添加描述,但由于它无法呈现,因此不适用于TabularInline。