<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>