From 0f9755e36f2fa7905e509f5edd89e5011b0ecada Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sun, 2 Dec 2018 16:44:21 +0100 Subject: [PATCH] Add a warning message to products that are out of timeframe --- src/pretix/control/templates/pretixcontrol/item/base.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pretix/control/templates/pretixcontrol/item/base.html b/src/pretix/control/templates/pretixcontrol/item/base.html index 048398b59e..8d80823360 100644 --- a/src/pretix/control/templates/pretixcontrol/item/base.html +++ b/src/pretix/control/templates/pretixcontrol/item/base.html @@ -36,6 +36,12 @@ item to an existing or newly created quota. {% endblocktrans %} + {% elif not object.is_available_by_time %} +
+ {% blocktrans trimmed %} + This product is currently not being sold since you configured below that it should only be available in a certain timeframe. + {% endblocktrans %} +
{% endif %} {% block inside %} {% endblock %}