| 66 | date_of_death = models.DateField('Died', null=True, blank=True) |
| 67 | |
| 68 | class Meta: |
| 69 | ordering = ['last_name', 'first_name'] |
| 70 | |
| 71 | def get_absolute_url(self): |
| 72 | """Returns the URL to access a particular author instance.""" |
nothing calls this directly
no outgoing calls
no test coverage detected