{% extends "vendor/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block vendor_content %}
{% trans 'Confirm Payment Method' %}
{% if is_stripe_configured %}
{% include "./includes/billing_address_form.html" with billing_address_form=billing_address_form %} {% include "./includes/payment_form.html" with credit_card_form=credit_card_form %}
{% else %} {% trans 'Stripe Processor not configured' %} {% endif %}
{% if transfer_result_msg %} {% for msg in transfer_result_msg.success %}

{{msg}}

{% endfor %} {% endif %}
{% if transfer_result_msg %} {% for msg in transfer_result_msg.failed %}

{{msg}}

{% endfor %} {% endif %}
{% endblock %}