| 53 | status = models.CharField(max_length=20, choices=LOAN_STATUS, blank=True, default='Maintenance', help_text='Book availability',) |
| 54 | |
| 55 | class Meta: |
| 56 | ordering = ['due_back'] |
| 57 | |
| 58 | def __str__(self): |
| 59 | return f'{self.id} ({self.book.title})' |
nothing calls this directly
no outgoing calls
no test coverage detected