2010-05-12 182 views

回答

19

您可以在您的ModelAdmin中聲明一個函數來爲您的按鈕生成html,例如

def button(self, obj): 
     return mark_safe('<input type="...">') 
    title.short_description = 'Action' 
    title.allow_tags = True 

然後把它放在你的list_display -tuple中。

class MyAdmin(admin.ModelAdmin) 
    list_display=('name', 'button') 

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#modeladmin-options

+0

謝謝! 對不起,遲到才能看到答案,我找到了另一種方法來解決我的問題。無論如何,它可以幫助^^ – 2010-06-08 17:59:07

+0

只是說:客戶不喜歡我以前解決的方式...... 所以它幫助我解決了同樣的問題! ;) – 2011-01-11 17:53:19

相關問題