http://python.usyiyi.cn/django/ref/contrib/admin/index.html html
list_display = () # 在list頁面展現的字段 fields = (()) # 在修改頁面展現的字段 在同個()中顯示一行 readonly_fields = () # 在修改頁面中的只讀字段 actions_on_bottom = actions_on_top =
http://python.usyiyi.cn/django/ref/contrib/admin/actions.html actions 具體操做python
actions = ['del_people'] def del_people(self, request, obj): for a in obj: if a.name == u'蘇豪': self.message_user(request, u"草哦草哦吃") # 反饋 else: a.delete() del_people.short_description = "吃人"