Guest User

Untitled

a guest
Sep 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # views.py
  2. from django.views.generic import ListView
  3.  
  4. from .models import Book
  5.  
  6. class BooksView(ListView):
  7. model = Book
  8. template_name = 'my-books.html'
  9.  
  10. # urls.py
  11. urlpatterns = [
  12. url(r'my-books/', views.BooksView.as_view())
  13. ]
Advertisement
Add Comment
Please, Sign In to add comment