Massive UI/UX Overhaul

This commit is contained in:
Raelon Masters
2020-06-19 02:00:01 -04:00
parent 6a28660e95
commit 4a85b21631
163 changed files with 1504 additions and 591 deletions

View File

@@ -39,7 +39,7 @@ class Books(models.Model):
def generic_search(self, query):
try:
results = Books.objects.annotate(
search=SearchVector("title", "file_name", "author"),
search=SearchVector("title", "file_name", "author","tags"),
).filter(search=query)
except Exception as e:
raise