Merge branch 'main' into create-book

This commit is contained in:
Mouse Reeve
2021-03-07 15:49:00 -08:00
77 changed files with 3191 additions and 650 deletions

View File

@ -137,6 +137,9 @@ urlpatterns = [
re_path(r'^switch-edition/?$', views.switch_edition),
re_path(r'^create-book/?$', views.EditBook.as_view()),
# isbn
re_path(r'^isbn/(?P<isbn>\d+)(.json)?/?$', views.Isbn.as_view()),
# author
re_path(r'^author/(?P<author_id>\d+)(.json)?/?$', views.Author.as_view()),
re_path(r'^author/(?P<author_id>\d+)/edit/?$', views.EditAuthor.as_view()),