kenken999's picture
update
b97a3a5
raw
history blame contribute delete
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})