Commit a38e97f1 authored by RJC's avatar RJC

added homepage view to views.py in bookshelf module

parent 51b5167e
from django.shortcuts import render from django.shortcuts import render
from django.views import generic
# from .models import
# Create your views here. # Create your views here.
class HomePageView(generic.TemplateView):
template_name = 'bookshelf/home.html'
class BookListView(generic.ListView):
pass
class AuthorListView(generic.ListView):
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment