9 lines
252 B
Python
9 lines
252 B
Python
from django.contrib import admin
|
|
|
|
from core.apps.wherehouse.models.wherehouse import WhereHouse
|
|
|
|
|
|
@admin.register(WhereHouse)
|
|
class WhereHouseAdmin(admin.ModelAdmin):
|
|
list_display = ['id','name', 'address',]
|
|
search_fields = ['name', 'address'] |