0
在ModelAdmin類內部有一個內聯表格視圖(GenericTabularInline)。我需要添加鏈接來改變內聯表格視圖中的表單。下面是一些refrence代碼Django 1.7顯示在內聯tablur視圖中更改表單的鏈接
class StudentActionInline(generic.GenericTabularInline):
model = StudentActionInline
ordering = ('roll_no',)
class CaptainAdmin(admin.ModelAdmin):
inlines = [
StudentActionInline
]
我想添加一個鏈接以改變學生模型(一種形式來改變學生模型),內聯表格視圖中。這是在Django 1.7
如果我理解正確,學生模型是向管理員註冊的,並且您只想添加一個鏈接到與內聯表單中StudentActionInline關聯的學生實例的更改頁面上?我假設StudentActionInline對學生有一個fk? – Paulo
是的,這是正確的 –