默认的,管理界面下显示的东西只是
python2:def __unicode__(self): 和 python3:def __str__(self): 中返回的字段内容
想要让它更加的多元化的话
class AuthorAdmin(admin.ModelAdmin):
list_display('a','b','c') #可以显示多个字段名称
admin.site.register(Author,AuthorAdmin)
另外的,点击每个列可以进行排序.
还可以添加搜索框
search_fields = ('first_name','last_name')
还可以建立过滤列表
list_filter('',) 传入的参数都是元组类型的数值
date_hierarchy = 'publication_date' 另外一种过滤方式
ordering = ('-publication_date',) 根据什么来排序.-号表示降序.
fields = ('title','authors','publisher','publication_date')使用fields可以重新对编辑窗口的排放进行排序.
filter_horizontal = ('authors',) #只能用于多对多字段.
filter_vertical = ('authors',)垂直.