Các dạng xem và html sau được sử dụng để hiển thị tất cả các sách có thông tin chi tiết về tác giả tương ứng.
views.py
def client_add(request):
books = Book.objects.all()
return render_to_response('book_details.html', locals(), context_instance=RequestContext(request))
book_details.html
<body>
{% for book in books %}
{{book.book_name}}
{{book.publisher_name}}
{{book.author.first_name}}
{{book.author.last_name}}
{{book.author.email}}
{{book.author.age}}
{% endif %}
</body>
Các dạng xem và html sau được sử dụng cho các sách hiển thị cho các chi tiết tương ứng với tác giả cụ thể.
views.py
def client_add(request):
books = Book.objects.all(author_last_name ="author_last_name")
return render_to_response('book_details.html', locals(), context_instance=RequestContext(request))
book_details.html
<body>
{% for book in books %}
{{book.book_name}}
{{book.publisher_name}}
{{book.author.first_name}}
{{book.author.last_name}}
{{book.author.email}}
{{book.author.age}}
{% endif %}
</body>