| 20 | genre = models.ManyToManyField( Genre, help_text='Select a genre for this book') |
| 21 | |
| 22 | class Meta: |
| 23 | ordering = ['title', 'author'] |
| 24 | |
| 25 | def __str__(self): |
| 26 | return self.title |
nothing calls this directly
no outgoing calls
no test coverage detected