标签:
今天在慢慢完善管理后台的一些体验,
第一是要扩展默认显示类,就是现在弄的。
第二是要让一些显示框更自然友好,这是下一次要作的。
在各个app的admin.py里,加入相关的MIXIN类
class ServerAdmin(admin.ModelAdmin): list_display = (‘name‘, ‘ipaddress‘, ‘server_env‘, ‘status‘) search_fields = [‘name‘] admin.site.register(Server, ServerAdmin)
然后就:
标签:
原文地址:http://www.cnblogs.com/aguncn/p/4977785.html