24 lines
452 B
Python
24 lines
452 B
Python
from django.contrib import admin
|
|
from unfold.admin import ModelAdmin # type: ignore
|
|
|
|
from core.apps.banks.models import BankModel
|
|
|
|
|
|
@admin.register(BankModel)
|
|
class BankAdmin(ModelAdmin):
|
|
list_display = (
|
|
"name",
|
|
"bic_code",
|
|
"created_at",
|
|
"updated_at",
|
|
)
|
|
search_fields = (
|
|
"name",
|
|
"bic_code",
|
|
"created_at",
|
|
"updated_at"
|
|
)
|
|
list_display_links = (
|
|
"name",
|
|
)
|