Status
{% if product.active %} Active {% else %} Inactive {% endif %}Product ID
{{ product.id }}
Metadata
Key | Value |
---|---|
{{ key }} | {{ value }} |
No metadata |
Product Details
Viewing {{ product.name }}
Stripe integration is not enabled. To enable Stripe, set STRIPE_ENABLED=true in your environment.
Stripe API is not available. Make sure you have installed the Stripe package with: pip install stripe
Stripe API keys are missing. Configure STRIPE_PUBLIC_KEY, STRIPE_SECRET_KEY, and STRIPE_WEBHOOK_SECRET in your environment.
Error loading product: {{ error }}
Product not found with ID: {{ product_id }}
{{ product.description }}
{% endif %}{{ product.id }}
Key | Value |
---|---|
{{ key }} | {{ value }} |
No metadata |
{% if price.unit_amount_decimal %} {% if price.currency == 'usd' %}${% elif price.currency == 'eur' %}€{% elif price.currency == 'gbp' %}£{% else %}{{ price.currency|upper }} {% endif %}{{ price.unit_amount_decimal|floatformat:2 }} {% else %} {% if price.currency == 'usd' %}${% elif price.currency == 'eur' %}€{% elif price.currency == 'gbp' %}£{% else %}{{ price.currency|upper }} {% endif %}{{ price.unit_amount|default:0|floatformat:2 }} {% endif %}
{% if price.recurring %}{% if price.recurring.interval_count > 1 %} {{ price.recurring.interval_count }} {{ price.recurring.interval|title }}s billing {% else %} {{ price.recurring.interval|title }} billing {% endif %}
{% else %}One-time payment
{% endif %}Price ID: {{ price.id }}