X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/458886cbf21bca4d33ac5c44e90a5e9d71629216..cf9abb6f419c407ad53036d24c36b50105adeeff:/apps/catalogue/views.py diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index d74ca7544..1180ab2fd 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -359,6 +359,10 @@ def _get_result_type(match): return type +def books_starting_with(prefix): + prefix = prefix.lower() + return models.Book.objects.filter(_word_starts_with('title', prefix)) + def find_best_matches(query, user=None): """ Finds a Book, Tag or Bookstub best matching a query.