35225-vm/core/views.py
Flatlogic Bot f9a1f1c71e lms1
2025-10-25 14:09:13 +00:00

10 lines
248 B
Python

from django.shortcuts import render
from .models import Book
def index(request):
books = Book.objects.all()
context = {
'books': books,
'project_name': 'Library',
}
return render(request, 'core/index.html', context)