X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/04474c1980a751d4b6ca205e47b82e6471028e7f..cfcfd5961c1d4bab6712258531969a7103678733:/apps/catalogue/views.py diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index ade37e52a..052537491 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -103,7 +103,7 @@ def tagged_object_list(request, tags=''): raise Http404 model = models.Book - shelf_is_set = any(tag.category == 'set' for tag in tags) + shelf_is_set = (len(tags) == 1 and tags[0].category == 'set') theme_is_set = any(tag.category == 'theme' for tag in tags) if theme_is_set: model = models.Fragment