Implemented basic search functionality

This commit is contained in:
Mike Young
2019-12-13 01:43:18 -05:00
parent 0bef88d1f3
commit 0eeb23c52c
5 changed files with 22 additions and 13 deletions

View File

@@ -25,6 +25,7 @@ urlpatterns = [
path("prev_page/<bookset>", views.prev_page, name="prev_page"),
path("next_page/<bookset>", views.next_page, name="next_page"),
path("search/<query>", views.search, name="search"),
path("search/", views.search, name="search"),
]
if settings.DEBUG:
import debug_toolbar