13 lines
257 B
Python
13 lines
257 B
Python
from django.contrib import admin
|
|
from unfold.admin import ModelAdmin
|
|
|
|
from core.apps.accounts.models import ParticipantModel
|
|
|
|
|
|
@admin.register(ParticipantModel)
|
|
class ParticipantAdmin(ModelAdmin):
|
|
list_display = (
|
|
"id",
|
|
"__str__",
|
|
)
|