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