Fix - En admin

This commit is contained in:
Mauricio Baeza 2021-08-15 22:07:56 -05:00
parent 501da78ad1
commit da41f67dc2
1 changed files with 3 additions and 2 deletions

View File

@ -28,8 +28,9 @@ class AdminPerson(admin.ModelAdmin):
'name', 'name',
'country', 'country',
'is_actor', 'is_actor',
'is_director') 'is_director',
'is_woman') 'is_woman',
)
search_fields = ('name',) search_fields = ('name',)
list_filter = ('is_woman', 'is_actor', 'is_director', 'country') list_filter = ('is_woman', 'is_actor', 'is_director', 'country')