{% extends "base.html" %} {% block content %}

{{ book.description }}

{% for chapter in book.chapters %}

{{ chapter.name }}

{% if current_user.has_permission('documentation.create') %} + Page {% endif %}
{% if chapter.pages %} {% else %}

No pages in this chapter yet.

{% endif %}
{% else %}

No chapters yet.

{% endfor %} {% set unfiled_pages = [] %} {% for p in book.pages if not p.chapter_id and not p.archived %}{% set _ = unfiled_pages.append(p) %}{% endfor %} {% if unfiled_pages %}

Unfiled Pages

{% endif %} {% endblock %}