{% load i18n %}

{% trans "Paystack Payment Details" %}

{% if info.paystack_reference %}
{% trans "Reference" %}
{{ info.paystack_reference }}
{% endif %} {% if info.paystack_transaction_id %}
{% trans "Transaction ID" %}
{{ info.paystack_transaction_id }}
{% endif %} {% if info.paystack_status %}
{% trans "Status" %}
{{ info.paystack_status|title }}
{% endif %} {% if info.paystack_channel %}
{% trans "Channel" %}
{{ info.paystack_channel|title }}
{% endif %} {% if info.paystack_gateway_response %}
{% trans "Gateway Response" %}
{{ info.paystack_gateway_response }}
{% endif %} {% if info.paystack_paid_at %}
{% trans "Paid At" %}
{{ info.paystack_paid_at }}
{% endif %} {% if info.paystack_currency and info.paystack_amount %}
{% trans "Amount" %}
{{ info.paystack_currency }} {{ info.paystack_amount|floatformat:2 }}
{% endif %} {% if info.reconciled_at %}
{% trans "Last Reconciled" %}
{{ info.reconciled_at }}
{% endif %}
{% if info.paystack_transaction_id %}
{% trans "Paystack Dashboard" %}
{% trans "You can view this transaction in your Paystack dashboard using the transaction ID above." %}
{% endif %}