标签: django
在admin.py中
class PaymentDetailInline(admin.TabularInline): model = PaymentDetail extra = 1 class PaymentRequestAdmin(admin.ModelAdmin): inlines = [PaymentDetailInline]
结果是相关字段在最后,如何将它们放在其他字段中?
答案 0 :(得分:0)
您需要实施custom templates for the add_view and change_view views。默认模板不允许在常规字段中混合内联。
add_view
change_view