Commit 37e27527 authored by RJC's avatar RJC

added Book and Author list and detail views

parent b0f4c5c9
...@@ -12,5 +12,14 @@ class HomePageView(generic.TemplateView): ...@@ -12,5 +12,14 @@ class HomePageView(generic.TemplateView):
class BookListView(generic.ListView): class BookListView(generic.ListView):
pass pass
class BookDetailView(generic.DetailView):
pass
class AuthorListView(generic.ListView): class AuthorListView(generic.ListView):
pass pass
class AuthorDetailView(generic.DetailView):
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