Added showing list of children books on book detail page.
authorMarek Stępniowski <marek@stepniowski.com>
Sat, 6 Sep 2008 17:34:40 +0000 (19:34 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Sat, 6 Sep 2008 17:34:40 +0000 (19:34 +0200)
templates/catalogue/book_detail.html

index f95683c..ff92780 100644 (file)
             {% endif %}
             </ul>
         </div>
             {% endif %}
             </ul>
         </div>
+    
+        {% if book.children.all %}
+        <div id="book-children">
+            <h2>Utwory składające się na ten utwór:</h2>
+            {% for book in book.children.all %}
+                <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>
+            {% endfor %}
+        </div>
+        {% endif %}
+    
     </div>
     </div>
+        
     <div id="tags-list">
         <h2>O utworze</h2>
         <ul>
     <div id="tags-list">
         <h2>O utworze</h2>
         <ul>