{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta %} {% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

{{ bundle.title|default:"Untitled bundle" }}

Created {{ bundle.created_at|date:"M d, Y · H:i" }} · {{ documents|length }} HTML files

Generate PDF

Order your files

Lower number = earlier
{% csrf_token %}
{% for document in documents %}
{{ document.original_name }}
{{ document.content_text|truncatechars:120 }}
{% empty %}
No documents in this bundle yet.
{% endfor %}
Changes affect the next PDF export.

Export history

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

No exports yet. Generate your first PDF to start history.

{% endif %}

Next steps

Need quick changes? Update the order and export again. The PDF is always a single, continuous document.

Download PDF
{% endblock %}