{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% block title %}{% trans "Resale" %}{% endblock %} {% block content %}
{% blocktrans with l=counts.listed s=counts.sold c=counts.cancelled %} {{ l }} listed · {{ s }} sold · {{ c }} cancelled. Every resale is capped at face value; on sale the old ticket secret is reissued so screenshots stop working. {% endblocktrans %}
| # | {% trans "Order" %} | {% trans "Face" %} | {% trans "Asking" %} | {% trans "Fee" %} | {% trans "Status" %} | {% trans "Buyer" %} |
|---|---|---|---|---|---|---|
| {{ r.pk }} | {{ r.order_position.order.code }}-{{ r.order_position.positionid }} | {{ r.face_value }} | {{ r.asking_price }} | {{ r.admin_fee }} | {% if r.status == "sold" %}{% trans "Sold" %} {% elif r.status == "listed" %}{% trans "Listed" %} {% else %}{% trans "Cancelled" %}{% endif %} | {{ r.buyer_email }} |
| {% trans "No resale listings yet." %} | ||||||