kenken999's picture
test
1f074d8
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})