import unfold from unfold.admin import ModelAdmin as UnfoldModelAdmin from django.contrib import admin from .models import Club @admin.register(Club) class ClubAdmin(UnfoldModelAdmin): list_display = ['name', 'short_name', 'is_active', 'created_at'] list_filter = ['is_active'] search_fields = ['name', 'short_name'] readonly_fields = ['created_at', 'updated_at']