{% extends "binder/base.html" %} {% block box_name %} Create Brochure {% endblock %} {% block title %} Create Brochure {% endblock %} {% block extrajs %} {% endblock %} {% block caption %}

{{ pdf.caption }}

{% endblock %} {% block box_content %}
  1. Click on "+" to expand each heading.
  2. Check the boxes next to the sections you'd like to include.
  3. Then click on the button to create your brochure.
{% csrf_token %} {% for group in form.field_groups %} {% with group.name|slugify as id %}
{{ group.field }}

{% if group.mandatory or group.expanded %}-{% else %}+{% endif %} {{ group.name }}

{% for field in group.fields %}
{{ field }}
{{ field.label }}
{% endfor %}
{% endwith %} {% endfor %} {%if owner_logged_in%}
Customise Your Brochure
{%endif%}
{% endblock %} {% block footer %}{% endblock %}