{% extends 'admin/base.html' %} {% block head_css %} {{ super() }} {% endblock %} {% block body %}
Edit {{ user }} access level in book {{ book }}
{{ form_hidden_tag() }}
  • {{ book.label }}
    {%- for collection in book.active_version.children_collections recursive %}
    • {{ collection.label }}
      {% if collection.active_children %} {{ loop(collection.active_children)}} {% else %} {% for section in collection.sections %}
      • {{ section.label }}
      {% endfor %} {% endif %}
    {%- endfor %}
{% endblock %}