{% if withdrawal.order %}
{% if request.event %}
{{ withdrawal.order.code }}
{% else %}
{{ withdrawal.order.full_code }}
{% endif %}
{% if withdrawal.email != withdrawal.order.email %}
{% if '@' in withdrawal.order.email %}
{{ withdrawal.order.email }}
{% endif %}
{% icon "exclamation-triangle" %}
{% if '@' not in withdrawal.order.email %}
{% trans "Beware: order has no email - withdrawal might be from a different email than the order!" %}
{% else %}
{% trans "Beware: withdrawal is from a different email than the order!" %}
{% endif %}
{% endif %}
{% else %}
{{ withdrawal.order_code }}
{% if request.event %}
{% icon "question-circle" %}
{% endif %}
{% endif %}