{% extends "base/base.html" %} {% load static %} {% block title %} Upload pdf bundle of scanned papers and pages {% endblock title %} {% block page_heading %} Upload pdf bundle of scanned papers and pages {% endblock page_heading %} {% block main_content %}
Bundle and paper overview Staged bundles Pushed bundles
Upload PDF bundle to staging area
{% if not papers_have_been_printed %}
No bundles to upload - papers have not yet been printed.
{% else %}
{% csrf_token %}
upload in progress
{% include "../base/alert_messages.html" with messages=messages %} {% endif %}
Help and suggestions
File restrictions
  • Must be a PDF
  • Fewer than {{ bundle_page_limit }} pages
  • Smaller than {{ bundle_size_limit }} MB
  • Filename cannot start with an underscore — those names are reserved for internal use.
What is safe mode rendering?

  • By default, Plom checks the content of each page for a single large bitmap image, for lossless extraction. This is fast and usually gives the highest possible image quality.
  • If Plom detects anything on the page other than a single bitmap image (such as text, PDF annotations, vector art, etc) it falls back on “rendering” the page to generate a bitmap.
  • In rare circumstances, the auto-detection-based extraction could miss overlaid annotations in student self-scanned work. Extraction could also give unreasonably-large files, for unreasonable scanner settings (such as very high DPI).
  • If you are experiencing problems with your scans, you can tick the box to disable the automatic extraction and force rendering in all cases.

{% if not uploaded_bundles %}
No uploaded bundles
{% else %}
Previously uploaded bundles
{% endif %} {% for bundle in uploaded_bundles %} {% endfor %}
Staged/Pushed Bundle name
(click to view)
Uploaded by When Pages Hash
{% if bundle.is_pushed %} pushed {% else %} staged {% endif %} {{ bundle.slug }} {{ bundle.username }} {{ bundle.time_uploaded }} {{ bundle.n_pages }} {{ bundle.pdf_hash }}
{% endblock main_content %}