{% load i18n %} {% if payment_info %} {% if order.status == "p" %}
{% blocktrans trimmed with method=provider.verbose_name %} This order has been paid with {{ method }}. {% endblocktrans %}
{% elif order.status == "r" %}{% blocktrans trimmed with method=provider.verbose_name %} This order has been planned to be paid with {{ method }} and has been marked as refunded. {% endblocktrans %}
{% else %}{% blocktrans trimmed with method=provider.verbose_name %} This order has been planned to be paid with {{ method }}, but the payment has not yet been completed. {% endblocktrans %}
{% endif %} {% if "source" in payment_info %}{% blocktrans trimmed %} This order has been planned to be paid via Stripe, but the payment has not yet been completed. {% endblocktrans %}
{% endif %}