Giới thiệu sản phẩm

from django.contrib import admin
from .models import Product,Customer

# Register your models here.
@admin.register(Product)
class ProductAdmin(admin.ModelAdmin):
    list_display = ("product_id", "product_name","price","quantity")
    search_field=("product_id","product_name")
    list_filter=("product_id","product_name")
    odering=("product_name")
@admin.register(Customer)
class CustomerAdmin(admin.ModelAdmin):
    list_display = ("customer_id", "customer_name","email","phonenumber")
    search_field=("customer_id","customer_name","phonenumber")
    list_filter=("customer_id","customer_name")
    odering=("customer_name")


Hình ảnh sản phẩm
Hãy bình luận để nhặt 100 thóc nhé

Đăng nhập để tham gia bình luận

Thông tin tác giả

Địa vị cộng đồng: Nông dân

Sản phẩm liên quan

    Không có sản phẩm nào

Bạn muốn thử làm game không?