initial commit

This commit is contained in:
2025-08-05 10:26:39 +05:00
commit b7412bbef6
298 changed files with 10533 additions and 0 deletions

View File

@@ -0,0 +1 @@
from .banks import * # noqa

View File

@@ -0,0 +1,23 @@
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",
)