25 lines
454 B
Python
25 lines
454 B
Python
from django.contrib import admin
|
|
from unfold.admin import ModelAdmin # type: ignore
|
|
|
|
from core.apps.companies.models import CompanyFolderModel
|
|
|
|
|
|
@admin.register(CompanyFolderModel)
|
|
class FolderAdmin(ModelAdmin):
|
|
list_display = (
|
|
"name",
|
|
"company",
|
|
"created_at"
|
|
)
|
|
|
|
search_fields = (
|
|
"name",
|
|
"company",
|
|
"created_at",
|
|
"updated_at",
|
|
)
|
|
|
|
list_display_links = (
|
|
"name",
|
|
)
|