kenken999's picture
fda
0f43f8a
raw
history blame
179 Bytes
from django.shortcuts import render
from .models import Book
def book_list(request):
books = Book.objects.all()
return render(request, 'book_list.html', {'books': books})