8 lines
344 B
Python
8 lines
344 B
Python
from django.contrib import admin
|
|
from .models import InventoryItem
|
|
|
|
@admin.register(InventoryItem)
|
|
class InventoryItemAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'store_name', 'cost', 'store_location', 'lead_time')
|
|
search_fields = ('name', 'store_name', 'features', 'description')
|
|
list_filter = ('store_name', 'store_location') |