Commit 593cc305 authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Fixed a syntax error

parent 271c8a25
......@@ -9,6 +9,6 @@ urlpatterns = [
path('authors/<int:pk>/details/', AuthorsDetailView.as_view(), name='author-details'),
path('books/add/', BookCreateView.as_view(), name='add-book'),
path('authors/add/', AuthorCreateView.as_view(), name='add-author'),
path('books/<int:pk>/edit/', BookUpdateView.as_view(), name='edit-book'),
path('books/<pk>/edit/', BookUpdateView.as_view(), name='edit-book'),
path('authors/<pk>/edit/', AuthorUpdateView.as_view(), name='edit-author'),
]
\ 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