9 lines
319 B
Python
9 lines
319 B
Python
from django.contrib import admin
|
|
from .models import Member
|
|
|
|
@admin.register(Member)
|
|
class MemberAdmin(admin.ModelAdmin):
|
|
list_display = ('full_name', 'email', 'role', 'status', 'join_date')
|
|
list_filter = ('role', 'status', 'join_date')
|
|
search_fields = ('full_name', 'email', 'notes')
|
|
list_per_page = 25 |