Add list_display to Person

This commit is contained in:
PCoder 2021-11-26 19:21:33 +05:30
parent 23b48bcba0
commit c8ba67f079
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ class PersonAdmin(admin.ModelAdmin):
),
}),
)
list_display = ['full_name', 'country', 'organization']
class ResourceAdmin(admin.ModelAdmin):