| 11 | |
| 12 | @admin.register(Author) |
| 13 | class AuthorAdmin(admin.ModelAdmin): |
| 14 | list_display = ('last_name', 'first_name', 'date_of_birth', 'date_of_death') |
| 15 | fields = ['first_name', 'last_name', ('date_of_birth', 'date_of_death')] |
| 16 | |
| 17 | |
| 18 | class BooksInstanceInline(admin.TabularInline): |
nothing calls this directly
no outgoing calls
no test coverage detected