removed author/genre/kind/period boxes on main page
authorJan Szejko <j-sz@o2.pl>
Mon, 25 Jan 2016 16:08:10 +0000 (17:08 +0100)
committerJan Szejko <j-sz@o2.pl>
Mon, 25 Jan 2016 16:08:10 +0000 (17:08 +0100)
src/wolnelektury/templates/main_page.html
src/wolnelektury/views.py

index c037b9f..f2e6863 100755 (executable)
@@ -43,6 +43,7 @@
         <a class="more" href="{% url 'theme_catalogue' %}">Zobacz katalog motywów</a>
     </section>
 
+    {% comment %}
     <section class="tag-box-section">
         <h1>Autorzy</h1>
       <a class="tag-box" href="{{ author.get_absolute_url }}">
@@ -74,6 +75,7 @@
       </a>
         <a class="more" href="{% url 'epoch_catalogue' %}">Zobacz katalog epok</a>
     </section>
+    {% endcomment %}
 
     {% if collection %}
         <section>
index 49f7b24..c179280 100644 (file)
@@ -25,16 +25,16 @@ from ssify import ssi_included
 def main_page(request):
     ctx = {
         'last_published': Book.objects.exclude(cover_thumb='').filter(parent=None).order_by('-created_at')[:6],
+        'theme_books': []
     }
 
-    for category in ('author', 'epoch', 'genre', 'kind'):
-        try:
-            ctx[category] = Tag.objects.filter(category=category).order_by('?')[:1][0]
-        except IndexError:
-            pass
+    for category in ('author', 'epoch', 'genre', 'kind'):
+        try:
+            ctx[category] = Tag.objects.filter(category=category).order_by('?')[:1][0]
+        except IndexError:
+            pass
 
     # FIXME: find this theme and books properly.
-    ctx['theme_books'] = []
     if Fragment.objects.count():
         while True:
             ctx['theme'] = Tag.objects.filter(category='theme').order_by('?')[:1][0]