{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta %} {% endblock %} {% block content %}
Internal doc bundler

Combine multiple HTML files into a single PDF in minutes.

Upload multiple HTML files, set the order, and download one clean PDF. Built for staff who need to bundle text-heavy documents without manual copy/paste.

Average prep time Under 3 mins

Upload → reorder → export

One continuous PDF with clean spacing.

What gets bundled
Policies · Updates · Release notes · Staff memos
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

Create a new bundle

Drop in your HTML files. We will keep their order and let you refine it on the next screen.

Continuous PDF output
{% csrf_token %} {{ form.non_field_errors }}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors|join:", " }}
{% endif %}
HTML only · We extract the text and combine it in order.
{% if file_errors %}
{{ file_errors|join:", " }}
{% endif %}
You can reorder before exporting.

Recent bundles

See all
{% if bundles %}
{% for bundle in bundles %}
{{ bundle.title|default:"Untitled bundle" }}
{{ bundle.created_at|date:"M d, Y · H:i" }} · {{ bundle.documents.count }} files
Open
{% endfor %}
{% else %}

No bundles yet. Upload HTML files to create your first bundle.

{% endif %}

Latest exports

{% if exports %}
{% for export in exports %}
{{ export.bundle.title|default:"Untitled bundle" }}
{{ export.created_at|date:"M d, Y · H:i" }}
Download
{% endfor %}
{% else %}

No exports yet. Generate your first PDF to see history here.

{% endif %}
{% endblock %}