From 01e6cf630085f4533244a5b2bf78cdc6f9d57265 Mon Sep 17 00:00:00 2001 From: Connor Rhodes Date: Fri, 22 May 2026 15:59:21 -0500 Subject: [PATCH] add drag-and-drop support to print upload area --- home/print/templates/index.html | 108 ++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 home/print/templates/index.html diff --git a/home/print/templates/index.html b/home/print/templates/index.html new file mode 100644 index 0000000..03ea98d --- /dev/null +++ b/home/print/templates/index.html @@ -0,0 +1,108 @@ + + + + + + Web Print Service + + + + + + + + +
+
+ +
+ +

PDF Web Print

+

Upload a PDF to print to {{ printer_name }}.

+

(Max {{ max_pages }} pages)

+
+ + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} +
+ {% for category, message in messages %} + + {% endfor %} +
+ {% endif %} + {% endwith %} + +
+
+ + +
+ +
+ +
+
+
+ +
+

A simple Flask web app for local printing.

+
+
+ + + + +