Commit 74aba777 authored by Joei Yucoco's avatar Joei Yucoco

removed comments in bookshelf's urls.py

parent 03fd78a6
...@@ -2,8 +2,6 @@ from django.urls import path ...@@ -2,8 +2,6 @@ from django.urls import path
from .views import HomeView, BooksView, BookDetailsView, AuthorsView, AuthorDetailsView from .views import HomeView, BooksView, BookDetailsView, AuthorsView, AuthorDetailsView
urlpatterns = [ urlpatterns = [
#path('', index, name='index'),
#path('home', HomeView.as_view(), name='home'),
path('home/', HomeView, name='home'), path('home/', HomeView, name='home'),
path('books/', BooksView.as_view(), name='books-list'), path('books/', BooksView.as_view(), name='books-list'),
path('books/<int:pk>/details/', BookDetailsView.as_view(), name='books-detail'), path('books/<int:pk>/details/', BookDetailsView.as_view(), name='books-detail'),
......
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