You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
566 B

from django.contrib import admin
from apps.basic.models import Address
# Register your models here.
@admin.register(Address)
class AddressAdmin(admin.ModelAdmin):
admin.site.site_title = '我的特产商城后台'
admin.site.site_header = '我的特产商城后台'
admin.site.index_title = '商城平台管理'
# 设置列表显示列
list_display = ['province', 'city', 'district', 'address', 'contact_name', 'contact_mobile']
# 设置搜索
search_fields = ['contact_name', 'contact_mobile']
# 过滤
list_filter = ['city']