10 lines
565 B
HTML
10 lines
565 B
HTML
|
{% load i18n %}
|
||
|
|
||
|
<p>
|
||
|
{% url "control:event.order" organizer=event.organizer.slug event=event.slug code=data.order as ourl %}
|
||
|
{% blocktrans trimmed with charge=data.charge stripe_href="href='https://dashboard.stripe.com/payments/"|add:data.charge|add:"' target='_blank'"|safe order="<a href='"|add:ourl|add:"'>"|add:data.order|add:"</a>"|safe %}
|
||
|
Stripe reported that the transaction <a {{ stripe_href }}>{{ charge }}</a> has been refunded.
|
||
|
Do you want to refund mark the matching order ({{ order }}) as refunded?
|
||
|
{% endblocktrans %}
|
||
|
</p>
|