нужного поля?
@property
def author(self):
book_id = getattr(self, 'book_id')
book = Book.objects.get(id=book_id)
author_id = getattr(book, 'author_id')
author = Author.objects.get(id=author_id)
author_name = getattr(author, 'first_name')
return author_name
if self.book_id and self.book.author_id: sel
Сложна код , переменых дофига
Обсуждают сегодня