{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% block title %}{% trans "Dynamic pricing" %}{% endblock %} {% block content %}

{% trans "Dynamic pricing tiers" %}

{% trans "Tiers advance by date or by % sold. The active tier sets the live item price and the urgency badge in the shop." %}

{% for b in blocks %}

{{ b.item.name }} {% if b.label %}{{ b.label }}{% endif %}

{% for t in b.tiers %} {% endfor %}
#{% trans "Tier" %}{% trans "Price" %} {% trans "Allocation" %}{% trans "Advances" %} {% trans "Active" %}
{{ t.sort_order }} {{ t.name }} {{ t.price }} {% if t.allocation %}{{ t.allocation }}{% else %}—{% endif %} {% if t.trigger_type == "date" %} {% trans "on" %} {{ t.trigger_date|default:"—" }} {% else %} {% trans "at" %} {{ t.trigger_quota_pct }}% {% trans "sold" %} {% endif %} {% if t.name == b.active_name %}{% endif %}
{% empty %}
{% trans "No pricing tiers configured yet. Add PriceTier rows against your items to start the ladder." %}
{% endfor %} {% endblock %}