X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/03e4e8af0a2e2140399926fa8ed154acabb39b0c..33000da06ced7401c2bfa5484145a33586a554f8:/src/search/views.py diff --git a/src/search/views.py b/src/search/views.py index e6efc21bd..39284c70c 100644 --- a/src/search/views.py +++ b/src/search/views.py @@ -151,10 +151,10 @@ def search_books(query): search_fields = [] words = query.split() fieldsets = ( - (['authors'], True), - (['title'], True), - (['metadata'], True), - (['text', 'themes_pl'], False), + (['authors', 'authors_nonstem'], True), + (['title', 'title_nonstem'], True), + (['metadata', 'metadata_nonstem'], True), + (['text', 'text_nonstem', 'themes_pl', 'themes_pl_nonstem'], False), ) for fields, is_book in fieldsets: search_fields += fields @@ -191,10 +191,10 @@ def search_pictures(query): search_fields = [] words = query.split() fieldsets = ( - (['authors'], True), - (['title'], True), - (['metadata'], True), - (['themes_pl'], False), + (['authors', 'authors_nonstem'], True), + (['title', 'title_nonstem'], True), + (['metadata', 'metadata_nonstem'], True), + (['themes_pl', 'themes_pl_nonstem'], False), ) for fields, is_book in fieldsets: search_fields += fields