{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% block title %} {% blocktrans trimmed with id=customer.identifier %} Customer #{{ id }} {% endblocktrans %} {% endblock %} {% block inner %}
{% trans "Membership type" %} | {% trans "Valid from" %} | {% trans "Valid until" %} | {% trans "Order" %} | {% trans "Attendee name" %} | {% trans "Usages" %} | |
---|---|---|---|---|---|---|
{% if m.canceled %}
|
{{ m.date_start|date:"SHORT_DATETIME_FORMAT" }} | {{ m.date_end|date:"SHORT_DATETIME_FORMAT" }} | {% if m.granted_in %} {{ m.granted_in.order.code }}-{{ m.granted_in.positionid }} {% endif %} | {{ m.attendee_name|default_if_none:"" }} |
{{ m.usages }} /
{{ m.membership_type.max_usages|default_if_none:"∞" }}
|
{% if m.testmode %} {% endif %} |
{% trans "Add membership" %} |
{% trans "Order code" %} | {% trans "Event" %} | {% trans "Order date" %} | {% trans "Order paid / total" %} | {% trans "Positions" %} | {% trans "Status" %} |
---|---|---|---|---|---|
{{ o.code }} {% if o.testmode %} {% trans "TEST MODE" %} {% endif %} | {{ o.event }} | {{ o.datetime|date:"SHORT_DATETIME_FORMAT" }} {% if o.customer_id != customer.pk %} {% endif %} |
{% if o.has_cancellation_request %}
{% trans "CANCELLATION REQUESTED" %}
{% endif %}
{% if o.has_external_refund or o.has_pending_refund %}
{% trans "REFUND PENDING" %}
{% elif o.has_pending_refund %}
{% trans "REFUND PENDING" %}
{% endif %}
{% if o.is_overpaid %}
{% trans "OVERPAID" %}
{% elif o.is_underpaid %}
{% trans "UNDERPAID" %}
{% elif o.is_pending_with_full_payment %}
{% trans "FULLY PAID" %}
{% endif %}
{% if o.computed_payment_refund_sum == o.total or o.computed_payment_refund_sum == 0 %}
{% endif %}
{{ o.computed_payment_refund_sum|money:o.event.currency }} /
{% if o.computed_payment_refund_sum == o.total or o.computed_payment_refund_sum == 0 %}
{% endif %}
{{ o.total|money:o.event.currency }}
{% if o.status == "c" and o.icnt %}
{% trans "INVOICE NOT CANCELED" %} {% endif %} |
{{ o.pcnt|default_if_none:"0" }} | {% include "pretixcontrol/orders/fragment_order_status.html" with order=o %} |