{% extends "base/base.html" %} {% if stripe_enabled %} {% load stripe_tags %} {% endif %} {% block title %}{{ product|get_stripe_product_name }}{% endblock %} {% block content %}

{{ product|get_stripe_product_name }}

{% if product.description %}

{{ product.description }}

{% endif %} {% if product.metadata %} {% endif %}
ID {{ product.id }}
Status {{ product|get_stripe_product_status|title }}
Metadata
    {% for key, value in product.metadata.items %}
  • {{ key }}: {{ value }}
  • {% endfor %}

Pricing

{% if product.prices.data %}
{% for price in product.prices.data %}

{{ price|format_stripe_price }}

{% if price.recurring %}

{{ price.recurring.interval|title }} billing

{% else %}

One-time payment

{% endif %}
{% endfor %}
{% else %}
No pricing available
{% endif %}
{% endblock %}