{% extends "base.html" %} {% load static %} {% block title %}Stripe Integration Status{% endblock %} {% block content %}

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

{% if stripe_status.customer_exists %} {% endif %}
User {{ user.email }}
Stripe Customer {% if stripe_status.customer_exists %} Exists {% else %} Not Created {% endif %}
Customer ID {{ stripe_status.customer_id }}
{% if not stripe_status.customer_exists %}
{% endif %}
{% endif %}
{% if stripe_status.enabled and stripe_status.stripe_available and stripe_status.api_keys_configured and not stripe_status.customer_exists %} {% endif %} {% endblock %}