8 lines
280 B
Python
8 lines
280 B
Python
from django.contrib import admin
|
|
from .models import Product
|
|
|
|
@admin.register(Product)
|
|
class ProductAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'category', 'sku', 'price', 'stock', 'minimum_stock_level')
|
|
search_fields = ('name', 'sku')
|
|
list_filter = ('category',) |