{% load i18n %} {% load bootstrap3 %}

{% trans "Card, M-Pesa & Mobile Money via Paystack" %}

{% if settings.endpoint == 'sandbox' %}
{% trans "Test mode" %} {% trans "This payment will be processed in test mode. No actual money will be charged." %}
{% endif %}

{% trans "You will be redirected to Paystack to complete your payment securely using your preferred method." %}

{% trans "Supported Payment Methods:" %}

{% if 'card' in settings.supported_channels %}
{% trans "Credit/Debit Cards" %}

{% trans "Visa, Mastercard, Verve" %}

{% endif %} {% if 'mobile_money' in settings.supported_channels %}
{% trans "M-Pesa & Mobile Money" %}

{% trans "M-Pesa, Airtel Money, etc." %}

{% endif %} {% if 'bank' in settings.supported_channels %}
{% trans "Bank Transfer" %}

{% trans "Direct bank transfers" %}

{% endif %} {% if 'ussd' in settings.supported_channels %}
{% trans "USSD" %}

{% trans "Pay via USSD codes" %}

{% endif %} {% if 'qr' in settings.supported_channels %}
{% trans "QR Code" %}

{% trans "Scan to pay" %}

{% endif %}
{% if settings.endpoint == 'sandbox' %}
{% trans "Test payment details" %}
{% trans "Card:" %} 4084084084084081, Expiry: 12/25, CVV: 123, PIN: 1234
{% trans "M-Pesa:" %} Use phone number 254708374149 for test M-Pesa payments
{% trans "Bank Transfer:" %} Any test account details will work in sandbox mode
{% endif %}