{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% block title %}{% trans "Dynamic pricing" %}{% endblock %} {% block content %}
{% 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 %}| # | {% 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 %} |