diff options
author | luxagraf <sng@luxagraf.net> | 2018-05-05 09:43:05 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-05-05 09:43:05 -0400 |
commit | ee01fffc0722eeb62136434bd596967f6321ddde (patch) | |
tree | 6ef1e6c947b345d4be9a13137b00889a3fb20fba /app/books | |
parent | 9a67722e20ec2f35226851ebfc859ef450016e76 (diff) |
fixed a bug in books build
Diffstat (limited to 'app/books')
-rw-r--r-- | app/books/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/books/urls.py b/app/books/urls.py index e6737bb..d7ffd33 100644 --- a/app/books/urls.py +++ b/app/books/urls.py @@ -17,7 +17,7 @@ urlpatterns = [ name="list" ), path( - r'<str:slug>/', + r'<str:slug>', views.BookDetailView.as_view(), name='detail', ), |