{% extends "pdf/base.html" %} {% block content %}
{{ form.hidden_tag() }} Split PDF documents into individual pages

Use the Choose button to select the PDF file you want to split. Hit Submit and you will receive a zip file containing a directory named after your document that holds the individual pages, one per file.

By default the files will be called "page_001.pdf", "page_002.pdf" and so on, but you can enter a prefix below to be used instead of "page".

{{ form.file_details(size=32) }}

{{ form.file_prefix(size=32) }}
{{ form.submit() }}
{% endblock %}