diff --git a/src/pretix/control/templates/pretixcontrol/pdf/index.html b/src/pretix/control/templates/pretixcontrol/pdf/index.html
index 1424ca3ff..413bb2807 100644
--- a/src/pretix/control/templates/pretixcontrol/pdf/index.html
+++ b/src/pretix/control/templates/pretixcontrol/pdf/index.html
@@ -182,8 +182,54 @@
{% endif %}
+
+
+ {% trans "Preferred language" %}
+
+ {% trans "Order locale" %}
+ {% for l in locales %}
+ {{ l.1 }}
+ {% endfor %}
+
+
+
+
+
+
{% trans "Upload PDF as background" %}
+
+ {% blocktrans trimmed %}
+ You can upload a PDF to use as a custom background.
+ The paper size will match the PDF.
+ {% endblocktrans %}
+
+
+
+
+ {% trans "Upload PDF as background" %}
+
+
+
+
+
+
+ {% trans "Download current background" %}
+
+
+
+
+
+
+
{% trans "Or choose custom paper size" %}
+
+ {% blocktrans trimmed %}
+ To manually change the paper size, you need to create a new, empty background.
+ {% endblocktrans %}
+
+
+
+
{% trans "Width (mm)" %}
@@ -195,45 +241,12 @@
-
{% trans "Background PDF" %}
-
+
+
{% trans "Create empty background" %}
-
-
- {% trans "Upload custom background" %}
-
-
-
-
-
- {% blocktrans trimmed %}
- After you changed the page size, you need to create a new empty background. If you
- want to use a custom background, it already needs to have the correct size.
- {% endblocktrans %}
-
-
-
-
-
-
-
- {% trans "Preferred language" %}
-
- {% trans "Order locale" %}
- {% for l in locales %}
- {{ l.1 }}
- {% endfor %}
-
diff --git a/src/pretix/static/pretixcontrol/js/ui/editor.js b/src/pretix/static/pretixcontrol/js/ui/editor.js
index 5df1b3dda..fa9914b5b 100644
--- a/src/pretix/static/pretixcontrol/js/ui/editor.js
+++ b/src/pretix/static/pretixcontrol/js/ui/editor.js
@@ -922,7 +922,6 @@ var editor = {
$("#toolbox-heading").text(gettext("Ticket design"));
$("#pdf-info-width").val(editor._px2mm(editor.pdf_viewport.width).toFixed(2));
$("#pdf-info-height").val(editor._px2mm(editor.pdf_viewport.height).toFixed(2));
- editor._paper_size_warning();
}
editor._update_toolbox_values();
},