Stripe Integration Status
Configuration Status
Stripe Enabled |
{% if stripe_status.enabled %}
Enabled
{% else %}
Disabled
{% endif %}
|
Stripe Library Available |
{% if stripe_status.stripe_available %}
Available
{% else %}
Not Available
{% endif %}
|
API Keys Configured |
{% if stripe_status.api_keys_configured %}
Configured
{% else %}
Not Configured
{% endif %}
|
{% if stripe_status.enabled and stripe_status.stripe_available and stripe_status.api_keys_configured %}
Customer Information
User |
{{ user.email }} |
Stripe Customer |
{% if stripe_status.customer_exists %}
Exists
{% else %}
Not Created
{% endif %}
|
{% if stripe_status.customer_exists %}
Customer ID |
{{ stripe_status.customer_id }} |
{% endif %}
{% if not stripe_status.customer_exists %}
{% endif %}
{% endif %}