From: Jan Szejko <j-sz@o2.pl>
Date: Tue, 26 Jan 2016 15:27:50 +0000 (+0100)
Subject: bugfix: list all objects, not just those with description
X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/d5268725022a60dfe5f2fa2998975c57b8b636a5

bugfix: list all objects, not just those with description
---

diff --git a/src/catalogue/views.py b/src/catalogue/views.py
index 847831d69..297339ebe 100644
--- a/src/catalogue/views.py
+++ b/src/catalogue/views.py
@@ -712,12 +712,12 @@ def tag_catalogue(request, category):
     else:
         tags = list(get_top_level_related_tags((), categories=(category,)))
 
-    tags = [tag for tag in tags if tag.description]
+    described_tags = [tag for tag in tags if tag.description]
 
-    if len(tags) > 4:
-        best = random.sample(tags, 4)
+    if len(described_tags) > 4:
+        best = random.sample(described_tags, 4)
     else:
-        best = tags
+        best = described_tags
 
     return render(request, 'catalogue/tag_catalogue.html', {
         'tags': tags,