added model inheritance,
[redakcja.git] / apps / wiki / templates / wiki / book_detail.html
index f30ed36..0a03d8b 100755 (executable)
@@ -6,8 +6,8 @@
     <h1>{{ book.title }}</h1>
 
 <p>
-    {% for chunk in book.chunk_set.all %}
-        <a target="_blank" href="{% url wiki_editor book.slug chunk.slug %}">{{ chunk.comment }}</a><br/>
+    {% for chunk in book %}
+        <a target="_blank" href="{{ chunk.get_absolute_url }}">{{ chunk.comment }}</a><br/>
     {% endfor %}
 </p>