Make shelves delete-able

This commit is contained in:
Mouse Reeve
2020-11-10 20:33:46 -08:00
parent ee59c64a10
commit 60e699efeb
3 changed files with 24 additions and 0 deletions

View File

@ -122,6 +122,7 @@ urlpatterns = [
re_path(r'^create-shelf/?$', actions.create_shelf),
re_path(r'^edit-shelf/(?P<shelf_id>\d+)?$', actions.edit_shelf),
re_path(r'^delete-shelf/(?P<shelf_id>\d+)?$', actions.delete_shelf),
re_path(r'^shelve/?$', actions.shelve),
re_path(r'^unshelve/?$', actions.unshelve),
re_path(r'^start-reading/?$', actions.start_reading),