Web bookshelf first draft

This commit is contained in:
2023-10-02 22:58:15 +02:00
parent 3f905877e7
commit 996ddd67ea
6 changed files with 137 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ from portal.views import (
Manufacturers,
Scales,
Types,
Books,
SearchRoster,
)
@@ -54,6 +55,8 @@ urlpatterns = [
path("scales/<int:page>", Types.as_view(), name="scales_pagination"),
path("types", Types.as_view(), name="types"),
path("types/<int:page>", Types.as_view(), name="types_pagination"),
path("books", Books.as_view(), name="books"),
path("books/<int:page>", Books.as_view(), name="books_pagination"),
path(
"search",
SearchRoster.as_view(http_method_names=["post"]),