Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def book_types_detail(request, book_types_id):
- book_types = get_object_or_404(Book, book_types_id)
- context = {'book_types': book_types}
- return render(request, 'plibrary_core/book_types_detail.html', context)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement