Commit 80fb2962 authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Fixed the url patterns

parent 314e74a4
from django.urls import path
from .views import homepageIndex
from .views import HomepageView, BooksView
urlpatterns = [
path('home/', homepageIndex, name='homepageIndex')
path('home', HomepageView, name='home'),
path('books', BooksView.as_view(), name='books'),
]
\ No newline at end of file
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