mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-18 03:25:37 +00:00
Fix for big database not showing tags
This commit is contained in:
parent
bf0375d51d
commit
a9b20ca136
@ -1087,7 +1087,7 @@ def category_list():
|
||||
order_no = 1
|
||||
entries = calibre_db.session.query(db.Tags, func.count('books_tags_link.book').label('count')) \
|
||||
.join(db.books_tags_link).join(db.Books).order_by(order).filter(calibre_db.common_filters()) \
|
||||
.group_by(text('books_tags_link.tag')).all()
|
||||
.group_by(db.Tags.id).all()
|
||||
no_tag_count = (calibre_db.session.query(db.Books)
|
||||
.outerjoin(db.books_tags_link).outerjoin(db.Tags)
|
||||
.filter(db.Tags.name == None)
|
||||
|
Loading…
Reference in New Issue
Block a user