{% extends "base.html" %} {% block title %}Upload Instructions - {{ app_name }}{% endblock %} {% block content %}

Upload Instructions

{{ set.set_number }}: {{ set.set_name }}

{{ set.set_name }}

Set: {{ set.set_number }} | Theme: {{ set.theme }} | Year: {{ set.year_released }}

Current Instructions:
{{ set.instructions.count() }} file(s)

Accepted formats: PDF, PNG, JPG, JPEG, GIF (Max 50MB per file)

Drag & Drop Files Here

or click to browse

You can upload multiple files at once

Upload Tips:
  • PDFs: Upload complete instruction manuals as single PDF files
  • Images: Upload individual pages as separate images (they will be numbered automatically)
  • Quality: Higher resolution images provide better viewing experience
  • Organization: Files are automatically organized by set number

Cancel
{% if set.instructions.count() > 0 %}
Current Instructions
PDFs: {{ set.pdf_instructions|length }}
{% if set.pdf_instructions %}
    {% for pdf in set.pdf_instructions %}
  • {{ pdf.file_name }}
  • {% endfor %}
{% else %}

No PDFs uploaded yet

{% endif %}
Images: {{ set.image_instructions|length }}
{% if set.image_instructions %}

{{ set.image_instructions|length }} page(s)

{% else %}

No images uploaded yet

{% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %}